-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
32 lines (30 loc) · 1.04 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 find_packages, setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name="pycomo",
version="0.2.8",
description="PyCoMo is a software package for generating and analysing compartmentalized community metabolic models",
package_dir={"": "src"},
packages=find_packages(where="src"),
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/univieCUBE/PyCoMo",
author="Michael Predl",
author_email="michael.predl@univie.ac.at",
license="MIT",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
],
entry_points={
'console_scripts': [
'pycomo = pycomo.pycomo_models:main'
]
},
install_requires=["cobra >= 0.23.0", "pandas >= 1.5.3", "python-libsbml >= 5.20.1", "numpy >= 1.22.4"],
extra_require={
"dev": ["pytest >= 7.0", "twine >= 4.0.2"],
},
python_requires=">=3.9",
)