-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.32 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
40
41
42
43
44
45
[tool.poetry]
name = "biosimulators-masspy"
version = "0.1.2"
description = "BioSimulators-compliant command-line interface to the MassPY simulation program <https://masspy.readthedocs.io/>."
authors = ["Center for Reproducible Biomedical Modeling <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://masspy.readthedocs.io/"
repository = "https://github.com/biosimulators/Biosimulators_MassPy"
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Topic :: Scientific/Engineering :: Bio-Informatics',
]
keywords=['systems', 'biology', 'modeling', 'simulation']
exclude = ['tests', 'tests.*']
[tool.poetry.dependencies]
python = "^3.9"
biosimulators_utils = {version = "^0.1.151", extras = ["logging", "sbml"]}
cobra = "<= 0.23.0"
kisao = "^2.34"
libroadrunner = "> 2.2.0"
lxml = "^4.5"
masspy = "^0.1.7"
numpy = "< 1.24.0"
docker = "^7.1.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^7.1.1"
flakey = "^1.0"
pytest = "^8.3.3"
pytest-cov = "^5.0.0"
[tool.poetry.group.docs.dependencies]
pydata-sphinx-theme = "*"
sphinx = ">=1.8"
[tool.poetry.scripts]
biosimulators-masspy = 'biosimulators_masspy.__main__:main'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"