-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
executable file
·52 lines (46 loc) · 1.38 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from glob import glob
import os
from setuptools import setup, find_packages
with open('README.md') as readme_file:
readme = readme_file.read()
requirements = []
test_requirements = []
on_rtd = os.environ.get('READTHEDOCS', None)
if not on_rtd:
with open('requirements.txt') as requirements_file:
requirements_lines = requirements_file.readlines()
for line in requirements_lines:
requirements.append(line)
setup(
name='ensimpl',
version='1.0.1',
description="Ensembl tools",
long_description=readme,
author="Matthew Vincent",
author_email='[email protected]',
url='https://github.com/churchill-lab/ensimpl',
packages=find_packages(),
entry_points='''
[console_scripts]
ensimpl=ensimpl.cli:main
''',
#package_dir={'ensimpl':
# 'ensimpl'},
include_package_data=True,
#scripts=glob("bin/*"),
#setup_requires=requirements,
install_requires=requirements,
license="Apache Software License 2.0",
zip_safe=False,
keywords='ensimpl',
classifiers=[
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python :: 3.9',
]
#test_suite='tests',
#tests_require=test_requirements
)