-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
28 lines (27 loc) · 1.03 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
from distutils.core import setup
from os import path
setup(
name='cometspy',
packages=['cometspy'],
version='0.5.2',
license='GPL',
description='The Python interface to COMETS',
author='The COMETSPy Core Team',
author_email='[email protected]',
url='https://github.com/segrelab/cometspy',
download_url='https://github.com/segrelab/cometspy/archive/v0.5.1.tar.gz', # New releases here!!
keywords=['metabolism', 'dynamic', 'flux', 'balance', 'analysis', 'spatial', 'evolution'],
install_requires=[
# I get to this in a second
'numpy',
'cobra',
'pandas>=1.0.0'],
classifiers=[
'Development Status :: 4 - Beta', # "3 - Alpha", "4 - Beta", "5 - Production/Stable"
'Intended Audience :: Science/Research', # Define that your audience are developers
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
)