-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
64 lines (55 loc) · 1.97 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
53
54
55
56
57
58
59
60
61
62
63
64
import os
import sys
try:
from setuptools import setup
except ImportError:
sys.exit('ERROR: setuptools is required.\n')
try: # for pip >= 10
from pip._internal.req import parse_requirements
except ImportError: # for pip <= 9.0.3
from pip.req import parse_requirements
# try:
# from pip.req import parse_requirements
# except ImportError:
# sys.exit('ERROR: pip is required.\n')
if os.environ.get('READTHEDOCS', None):
# Set empty install_requires to get install to work on readthedocs
install_requires = []
else:
req_file = 'requirements.txt'
try:
reqs = parse_requirements(req_file, session=False)
except TypeError:
reqs = parse_requirements(req_file)
try:
install_requires = [str(r.req) for r in reqs]
except AttributeError:
install_requires = [str(r.requirement) for r in reqs]
# read version
exec(open('abstar/version.py').read())
# read long description
with open("README.md", "r") as fh:
long_description = fh.read()
config = {
'name': 'abstar',
'version': __version__,
'author': 'Bryan Briney',
'author_email': 'briney@scripps.edu',
'description': 'VDJ assignment and antibody sequence annotation. Scalable from a single sequence to billions of sequences.',
'long_description': long_description,
'long_description_content_type': 'text/markdown',
'url': 'https://www.github.com/briney/abstar',
'install_requires': install_requires,
'packages': ['abstar'],
'scripts': ['bin/abstar',
'bin/batch_mongoimport',
'bin/basespace_downloader',
'bin/build_abstar_germline_db',
'bin/make_basespace_credfile',],
'include_package_data': True,
'classifiers': ['License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Topic :: Scientific/Engineering :: Bio-Informatics']
}
setup(**config)