-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
52 lines (47 loc) · 1.56 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
46
47
48
49
50
51
52
[tool.poetry]
name = "biosimulators-copasi"
version = "0.1.38"
description = "BioSimulators-compliant command-line interface to the COPASI simulation program <http://copasi.org>."
authors = ["Center for Reproducible Biomedical Modeling <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://basico.readthedocs.io/en/latest/"
repository = "https://github.com/biosimulators/Biosimulators_COPASI"
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.10"
biosimulators_utils = {version = "^0.2.2", extras = ["logging", "sbml"]}
python-copasi = ">=4.45.296"
copasi_basico = ">=0.80"
docker = "^7.1.0"
evalidate = "^2.0.1"
kisao = "^2.34"
lxml = "^4.9.2"
numpy = "^1.24.4"
python_libsbml = "^5.20.1"
python_dateutil = "^2.8.2"
setuptools = "^75.1.0"
cement = "^3.0.8"
termcolor = "^2.3.0"
pandas = "^2.0.2"
[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-copasi = 'biosimulators_copasi.__main__:main'
fix-copasi-generated-combine-archive = 'biosimulators_copasi.__main__:fix_copasi_generated_combine_archive'
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"