-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
29 lines (28 loc) · 1.01 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
from setuptools import setup, find_packages
setup(
name = 'framed',
version = '0.5.2',
package_dir = {'':'src'},
packages = find_packages('src'),
install_requires = ["numpy",
"scipy",
"sympy",
"python-libsbml",
"matplotlib",
"pandas"],
scripts = ["scripts/framed-deletions"],
author = 'Daniel Machado',
author_email = '[email protected]',
description = 'framed - metabolic modeling for python',
license = 'Apache License Version 2.0',
keywords = 'metabolism modeling',
url = 'https://github.com/cdanielmachado/framed',
long_description = open('README.rst').read(),
classifiers = [
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 2.7',
'License :: OSI Approved :: Apache Software License',
],
)