-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 1.21 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
from setuptools import setup, find_packages
setup(
name = 'cobamp',
version = '0.2.2',
package_dir = {'':'src'},
packages = find_packages('src'),
install_requires = ["indexed==1.2.1",
"pandas==1.3.5",
"scipy==1.7.3",
"numpy==1.21.6",
"matplotlib==3.5.2",
"optlang==1.5.2",
"pathos==0.2.9",
"boolean.py==3.8"],
author = 'Vítor Vieira',
author_email = '[email protected]',
description = 'cobamp - pathway analysis methods for genome-scale metabolic models',
license = 'GNU General Public License v3.0',
keywords = 'pathway analysis metabolic model',
url = 'https://github.com/BioSystemsUM/cobamp',
long_description = open('README.rst').read(),
classifiers = [
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.6',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)