-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·34 lines (32 loc) · 1002 Bytes
/
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
33
34
from setuptools import setup, find_packages
with open("README.md") as f:
readme = f.read()
setup(
name="cobrakbase",
version="0.4.0",
description="KBase interface for COBRApy",
long_description_content_type="text/markdown",
long_description=readme,
url="https://github.com/Fxe/cobrakbase",
author="Filipe Liu",
author_email="fliu@anl.gov",
license="MIT",
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Scientific/Engineering :: Bio-Informatics",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Natural Language :: English",
],
install_requires=[
"pandas >= 2.2.2",
"cobra >= 0.29.0",
"modelseedpy >= 0.4.0",
"networkx >= 2.4",
],
zip_safe=True,
)