forked from gyorilab/indra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·99 lines (93 loc) · 4.75 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·99 lines (93 loc) · 4.75 KB
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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
from setuptools import setup
def main():
install_list = ['pysb>=1.3.0', 'objectpath', 'rdflib==4.2.1',
'requests>=2.11', 'lxml', 'ipython', 'future',
'networkx>=2', 'pandas', 'ndex2==2.0.1', 'jinja2',
'protmapper>=0.0.6']
extras_require = {
# Inputs and outputs
'biopax': ['cython', 'pyjnius==1.1.4'],
'trips_offline': ['pykqml'],
'reach_offline': ['cython', 'pyjnius==1.1.4'],
'eidos_offline': ['pyyaml', 'cython', 'pyjnius==1.1.4'],
'geneways': ['stemming', 'nltk'],
'sofia': ['openpyxl'],
'bel': ['pybel'],
'sbml': ['python-libsbml'],
# Tools and analysis
'machine': ['pytz', 'tzlocal', 'tweepy', 'pyyaml',
'click'],
'explanation': ['kappy==4.0.0rc1', 'paths-graph'],
# AWS interface and database
'aws': ['boto3', 'reportlab'],
# Utilities
'graph': ['pygraphviz'],
'plot': ['matplotlib'],
'isi': ['nltk'],
'api': ['flask']
}
extras_require['all'] = list({dep for deps in extras_require.values()
for dep in deps})
setup(name='indra',
version='1.12.0',
description='Integrated Network and Dynamical Reasoning Assembler',
long_description='INDRA is a framework '
'for assembling rule-based mathematical models and '
'mechanistic networks of biochemical systems from natural '
'language and pathway databases.',
author='Benjamin Gyori',
author_email='benjamin_gyori@hms.harvard.edu',
url='http://github.com/sorgerlab/indra',
packages=['indra', 'indra.assemblers', 'indra.assemblers.cag',
'indra.assemblers.cx', 'indra.assemblers.cyjs',
'indra.assemblers.english', 'indra.assemblers.figaro',
'indra.assemblers.graph', 'indra.assemblers.html',
'indra.assemblers.index_card',
'indra.assemblers.kami', 'indra.assemblers.pybel',
'indra.assemblers.pysb', 'indra.assemblers.sbgn',
'indra.assemblers.sif', 'indra.assemblers.tsv',
'indra.belief',
'indra.benchmarks', 'indra.databases',
'indra.explanation',
'indra.literature', 'indra.mechlinker',
'indra.preassembler', 'indra.sources',
'indra.sources.bel',
'indra.sources.biopax', 'indra.sources.cwms',
'indra.sources.eidos',
'indra.sources.geneways', 'indra.sources.hprd',
'indra.sources.hume', 'indra.sources.index_cards',
'indra.sources.indra_db_rest', 'indra.sources.lincs_drug',
'indra.sources.ndex_cx', 'indra.sources.reach',
'indra.sources.rlimsp', 'indra.sources.sofia',
'indra.sources.sparser', 'indra.sources.tas',
'indra.sources.tees',
'indra.sources.trips', 'indra.sources.trrust',
'indra.resources',
'indra.resources.famplex', 'indra.statements',
'indra.tests',
'indra.tools', 'indra.tools.reading',
'indra.tools.reading.pmid_reading',
'indra.tools.reading.starcluster_reading',
'indra.tools.reading.util',
'indra.tools.machine', 'indra.util'],
install_requires=install_list,
extras_require=extras_require,
include_package_data=True,
keywords=['systems', 'biology', 'model', 'pathway', 'assembler',
'nlp', 'mechanism', 'biochemistry', 'network'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics',
],
entry_points={'console_scripts':
['indra-machine = indra.tools.machine.cli:main']}
)
if __name__ == '__main__':
main()