forked from brineylab/abstar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
43 lines (36 loc) · 1.22 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
import os
try:
from setuptools import setup
except ImportError:
sys.exit('ERROR: setuptools is required.\n')
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)
install_requires = [str(r.req) for r in reqs]
config = {
'description': 'VDJ assignment and antibody sequence annotation. Scalable from a single sequence to billions of sequences.',
'author': 'Bryan Briney',
'url': 'https://www.github.com/briney/abstar',
# 'download_url': 'www.github.com/briney/abstar/',
'author_email': '[email protected]',
'version': '0.2.10',
'install_requires': install_requires,
'packages': ['abstar'],
'scripts': ['bin/abstar',
'bin/batch_mongoimport',
'bin/build_abstar_germline_db',
'bin/make_basespace_credfile'],
'name': 'abstar',
'include_package_data': True
}
setup(**config)