-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
26 lines (23 loc) · 1002 Bytes
/
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
from setuptools import setup, find_packages
setup(
name = 'troppo',
version = '0.1.0',
package_dir = {'':'src'},
packages = find_packages('src'),
install_requires = ["cobamp==0.2.1", "cobra==0.24.0", "xlrd==1.2.0"],
author='Jorge Ferreira & Vítor Vieira',
author_email='jorge.ferreira@ceb.uminho.pt',
description='TROPPO - Tissue-specific RecOnstruction and Phenotype Prediction using Omics data',
license='GNU General Public License v3.0',
keywords='pathway analysis metabolic model',
url='https://github.com/BioSystemsUM/troppo',
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Scientific/Engineering :: Bio-Informatics',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3.5',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Topic :: Software Development :: Libraries :: Python Modules'
],
)