-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
23 lines (23 loc) · 1 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
from distutils.core import setup
from setuptools import find_packages
setup(
name='medusa-cobra',
description='Ensemble modeling using constraint-based reconstruction and analysis (COBRA)',
long_description='Medusa extends various algorithms and analyses used in the COBRA field to ensemble-scale, and provides a high-level user interface for analysis, visualization, and interpreting simulation results.',
version='0.2',
author='Gregory Medlock',
author_email='[email protected]',
url='https://github.com/gregmedlock/Medusa',
download_url='https://github.com/gregmedlock/Medusa/archive/0.2.tar.gz',
keywords=['computational biology','systems biology','biology'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
],
packages=find_packages(),
install_requires=['cobra>=0.13.0'],
package_data={'': ['test/data/*']}
)