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
·59 lines (54 loc) · 2.68 KB
/
Copy pathsetup.py
File metadata and controls
executable file
·59 lines (54 loc) · 2.68 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
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
import sys
def main():
# Only install functools32 if we're in Python 2 (it's not available
# for Python 3)
install_list = ['pysb>=1.3.0', 'objectpath', 'rdflib==4.2.1',
'requests>=2.11', 'lxml', 'ipython', 'future',
'networkx==1.11', 'pandas']
if sys.version_info[0] == 2:
install_list.append('functools32')
setup(name='indra',
version='1.5.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.belief',
'indra.benchmarks', 'indra.databases', 'indra.explanation',
'indra.literature', 'indra.mechlinker',
'indra.preassembler', 'indra.sources', 'indra.sources.bel',
'indra.sources.biopax', 'indra.sources.index_cards',
'indra.sources.ndex_cx', 'indra.sources.reach',
'indra.sources.sparser', 'indra.sources.trips',
'indra.resources', 'indra.tests',
'indra.tools', 'indra.tools.reading', 'indra.util'],
install_requires=install_list,
tests_require=['jnius-indra', 'jsonschema', 'coverage', 'matplotlib'],
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',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Topic :: Scientific/Engineering :: Chemistry',
'Topic :: Scientific/Engineering :: Mathematics',
],
extras_require={'machine': ['pytz', 'tzlocal', 'tweepy', 'ndex',
'pyyaml', 'click']},
entry_points={'console_scripts': ['indra-machine = indra.tools.machine.cli:main']}
)
if __name__ == '__main__':
main()