forked from draeger-lab/pymCADRE
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (28 loc) · 1.26 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
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name='pymCADRE',
version='1.0.0',
description='The pymCADRE tool is an advanced re-implementation of the metabolic Context-specificity Assessed by Deterministic Reaction Evaluation (mCADRE) algorithm in Python. It constructs tissue-specific metabolic models by leveraging gene expression data and literature-based evidence, along with network topology information.',
long_description=long_description,
long_description_content_type="text/markdown",
url='https://github.com/draeger-lab/pymCADRE',
author='Nantia Leonidou',
author_email='[email protected]',
license=' GPL-3.0',
packages=find_packages(where='pmCADRE_code/code', include=['check','prune','rank']),
install_requires=['pandas',
'numpy',
'cobrapy',
'requests',
'os'
],
classifiers=[
"Programming Language :: Python :: 3.8",
"Topic :: Software Development :: Version Control :: Git",
"Framework :: Jupyter",
"Operating System :: MacOS",
"Operating System :: Unix"
],
)