-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (35 loc) · 1.08 KB
/
pyproject.toml
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
35
36
37
38
39
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pycomo"
version = "0.2.6"
description = "PyCoMo is a software package for generating and analysing compartmentalized community metabolic models"
license = {file = "LICENSE"}
authors = [
{name = "Michael Predl", email = "michael.predl@univie.ac.at"},
{name = "Marianne Mießkes", email = "marianne.miesskes@univie.ac.at"}
]
maintainers = [
{name = "Michael Predl", email = "michael.predl@univie.ac.at"},
{name = "Marianne Mießkes", email = "marianne.miesskes@univie.ac.at"}
]
readme = "README.md"
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3"
]
requires-python = ">=3.9"
dependencies = [
"cobra >= 0.23.0",
"pandas >= 1.5.3",
"python-libsbml >= 5.20.1",
"numpy >= 1.22.4"
]
[project.urls]
repository = "https://github.com/univieCUBE/PyCoMo"
[project.scripts]
pycomo = "pycomo.pycomo_models:main"
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false