-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
21 lines (19 loc) · 978 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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.2.3',
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',
keywords=['pymCADRE', 'systems biology', 'tissue-specific metabolic models'],
install_requires=['pandas',
'numpy',
'cobra',
'requests']
)