-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (25 loc) · 1.44 KB
/
setup.py
File metadata and controls
28 lines (25 loc) · 1.44 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
28
import ez_setup
ez_setup.use_setuptools()
from setuptools import setup, find_packages
from pdb import set_trace
__version = '1.0.3'
setup(
name = "gim3e",
version = __version,
packages = find_packages(),
#scripts = [''],
zip_safe = False,
setup_requires = [],
install_requires = ['cobra>=0.2.0'],
#install_requires = [],
extras_require = {},
package_data = {'': ['*.txt', '*.html','LICENSE','README','data/*','examples/*py']},
author = "Brian J Schmidt",
author_email = "brianjschmidt@gmail.com",
description = "GIM3Epy is a package for the metabolic model-guided analysis of metabolomics and transcriptomics data",
license = "GPL V3.0",
keywords = "metabolism metabolomics transcriptomics genome modeling",
url = "http://opencobra.sourceforge.net",
test_suite = "gim3e.test.suite",
long_description = "This package contains the Python distribution for GIM3E (Gene Inactivation Moderated by Metabolism, Metabolomics, and Expression). GIM3E is an algorithm that enables the development of condition-specific models based on a genome-scale model of metabolism, an objective function, transcriptomics, and cellular metabolomics data. GIM3E establishes metabolite utilization requirements with metabolomics data, uses model-paired transcriptomics data to find experimentally supported solutions, and also provides calculations of the turnover (production / consumption) flux of metabolites.",
)