-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (25 loc) · 1.05 KB
/
Copy pathsetup.py
File metadata and controls
27 lines (25 loc) · 1.05 KB
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
from setuptools import setup, find_packages
setup(
name = 'cobamp-grasp',
version = '0.0.1',
package_dir = {'':'src'},
packages = find_packages('src'),
install_requires = ["cobamp>=0.2",
"indexed"],
author = 'Vítor Vieira',
author_email = 'vvieira@ceb.uminho.pt',
description = '''cobamp-grasp - A cobamp-dependent framework enabling gene regulatory and
signalling pathway integration in metabolic models''',
license = 'GNU General Public License v3.0',
keywords = 'pathway analysis metabolic model',
url = 'https://github.com/BioSystemsUM/cobamp-grasp',
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'
],
)