-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (37 loc) · 1015 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[tool.poetry]
name = "bsvs"
version = "0.0.1"
description = "A high-level Python client for the Biological Simulation Verification Service REST API."
authors = ["Alex Patrie <[email protected]>"]
readme = "README.md"
include = ["pyproject.toml"]
packages = [
{include = "bsvs"},
{include = "tests"},
]
[tool.poetry.scripts]
verify = "bsvs.__main__:cli"
[tool.poetry.dependencies]
python = "^3.10"
requests-toolbelt = "^1.0.0"
seaborn = "^0.13.2"
antimony = "*"
toml = "^0.10.2"
process-bigraph = "^0.0.21"
requests = "^2.32.3"
[tool.poetry.group.docs.dependencies]
sphinx = "^8.1.3"
sphinx-autodoc-typehints = "^2.5.0"
sphinx-rtd-theme = "^3.0.2"
[tool.poetry.group.notebook.dependencies]
ipykernel = "^6.29.5"
jupyterlab = "^4.3.4"
[tool.poetry.group.dev.dependencies]
pip-autoremove = "^0.10.0"
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "--ignore=setup.py"
python_files = "main.py"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"