-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
48 lines (45 loc) · 1.46 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
from setuptools import setup, find_packages
requirements = [
'cobra>=0.5.4',
'six',
'pandas>=0.18.0',
'fuzzywuzzy>=0.10.0',
'requests',
'tabulate',
'numpy>=1.6'
]
try:
with open('README.rst') as handle:
description = handle.read()
except:
description = ''
setup(
name='cobrababel',
version='0.1.3',
packages=find_packages(),
setup_requires=[],
install_requires=requirements,
tests_require=['pytest', 'lxml'],
package_data={'': ['data/*', 'test/data/*']},
author='Michael Mundy, Helena Mendes-Soares, Nicholas Chia',
author_email='mundy.michael@mayo.edu',
description='CobraBabel: COBRA Model Translator',
long_description=description,
license='BSD',
keywords='metabolism biology optimization flux balance analysis fba',
url='https://github.com/mmundy42/cobrababel',
download_url='https://pypi.python.org/pypi/cobrababel',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Bio-Informatics'
],
platforms='GNU/Linux, Mac OS X >= 10.7, Microsoft Windows >= 7'
)