-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
executable file
·50 lines (42 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
import os
from setuptools import setup
readme_path = os.path.join(os.path.abspath(os.path.dirname(__file__)),
'README.md')
with open(readme_path, 'r', encoding='utf-8') as fh:
long_description = fh.read()
def main():
install_list = ['indra', 'boto3']
extras_require = {
'trips': ['pykqml'],
'reach': ['cython', 'pyjnius==1.1.4'],
'adeft': ['adeft'],
'isi': ['nltk', 'unidecode'],
}
extras_require['all'] = list({dep for deps in extras_require.values()
for dep in deps})
setup(name='indra_reading',
version='0.0.1',
description='High Through-put Reading Tools for INDRA',
long_description=long_description,
long_description_content_type='text/markdown',
author='Patrick Greene',
author_email='[email protected]',
url='http://github.com/indralab/indra_reading',
packages=['indra_reading', 'indra_reading.pipelines',
'indra_reading.pipelines.pmid_reading',
'indra_reading.pipelines.starcluster_reading',
'indra_reading.readers', 'indra_reading.readers.isi',
'indra_reading.readers.reach', 'indra_reading.readers.mti',
'indra_reading.readers.sparser',
'indra_reading.readers.eidos',
'indra_reading.readers.trips', 'indra_reading.scripts',
'indra_reading.util', 'indra_reading.tests',
'indra_reading.batch',
'indra_reading.batch.submitters'],
install_requires=install_list,
extras_require=extras_require,
include_package_data=True,
keywords=['systems', 'biology', 'reading', 'aws',
'nlp', 'mechanism', 'biochemistry', 'network'])
if __name__ == '__main__':
main()