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
·50 lines (48 loc) · 2.27 KB
/
setup.py
File metadata and controls
executable file
·50 lines (48 loc) · 2.27 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
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.2.1', 'objectpath', 'rdflib', 'requests>=2.11',
'lxml', 'ipython', 'future', 'networkx', 'pandas']
if sys.version_info[0] == 2:
install_list.append('functools32')
setup(name='indra',
version='1.4.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.bel', 'indra.belief',
'indra.benchmarks',
'indra.biopax', 'indra.databases', 'indra.index_cards',
'indra.literature', 'indra.mechlinker',
'indra.preassembler', 'indra.reach', 'indra.resources',
'indra.sparser', 'indra.tests', 'indra.tools',
'indra.tools.reading', 'indra.trips', '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',
],
)
if __name__ == '__main__':
main()