-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (56 loc) · 1.45 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[tool.poetry]
name = "biosim-server"
version = "0.2.2"
description = "Server for the consolidated Biosimulations API"
authors = ["Alex Patrie <[email protected]>, Jim Schaff <[email protected]>"]
readme = "README.md"
include = ["pyproject.toml"]
packages = [
{include = "biosim_server"},
{include = "tests"},
]
[tool.poetry.dependencies]
python = "^3.13"
python-dotenv = "^1.1.0"
fastapi = "^0.115.12"
pydantic = "^2.11.0"
uvicorn = "^0.34.0"
pyyaml = "^6.0.2"
numpy = "^2.2.4"
pandas = "^2.2.3"
chardet = "^5.2.0"
temporalio = "^1.10.0"
aiohttp = "^3.11.14"
motor = {extras = ["srv"], version = "^3.7.0"}
pydantic-settings = "^2.8.1"
python-multipart = "^0.0.20"
gcloud-aio-storage = "^9.4.0"
h5py = "^3.13.0"
aiocache = "^0.12.3"
asyncssh = "^2.20.0"
[tool.poetry.group.worker.dependencies]
python-libsbml = "^5.20.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.5"
mypy = "^1.15.0"
types-requests = "^2.32.0.20250306"
types-aiofiles = "^24.1.0.20250326"
types-pyyaml = "^6.0.12.20250326"
motor-types = "^1.0.0b4"
pytest-asyncio = "^0.26.0"
types-aiobotocore = "^2.21.1"
testcontainers = {extras = ["mongodb"], version = "^4.9.2"}
httpx = "^0.28.1"
[tool.mypy]
python_version = "3.11"
strict = true
[[tool.mypy.overrides]]
module = "archive.*"
ignore_errors = true
[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"