forked from ModelSEED/ModelSEEDpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·32 lines (28 loc) · 835 Bytes
/
setup.py
File metadata and controls
executable file
·32 lines (28 loc) · 835 Bytes
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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='ModelSEEDpy',
version='0.2.2',
description='Python package for building and analyzing models using ModelSEED',
long_description=readme,
author='Christopher Henry',
author_email='chenry@anl.gov',
url='https://github.com/ModelSEED/ModelSEEDpy',
license=license,
packages=find_packages(exclude=('tests', 'docs')),
package_data={
'modelseedpy': ['config.cfg']
},
install_requires=[
"networkx >= 2.4",
"pyeda >= 0.28.0",
"cobra >= 0.17.1",
"scikit-learn == 0.23.2", # too support KBase pickle models
"scipy >= 1.5.4",
"chemicals >= 1.0.13"
]
)