-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
35 lines (30 loc) · 955 Bytes
/
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
[tool.poetry]
name = "bio-bundles"
version = "0.0.1"
description = "Commonly grouped biological composites"
authors = ["Alex Patrie <[email protected]>"]
readme = "README.md"
packages = [{include = "bundles"}, {include = "tests"}]
[tool.poetry.dependencies]
python = ">=3.10"
process-bigraph = "*"
jupyterlab = "*"
seaborn = "*"
simulariumio = {version = "^1.11.0", optional = true}
cobra = {version = "^0.29.1", optional = true}
copasi-basico = {version = "^0.76", optional = true}
tellurium = {version = "^2.2.10", optional = true}
smoldyn = {version = "*", optional = true}
[tool.poetry.extras]
simulators = ["cobra", "copasi-basico", "tellurium", "simulariumio"]
[tool.poetry.group.dev.dependencies]
pytest = "^8.2.1"
mypy = "^1.10.0"
flake8 = "^7.0.0"
[tool.pytest.ini_options]
testpaths = ["bundles"]
addopts = "--ignore=setup.py"
python_files = "*.py"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"