-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (54 loc) · 1.4 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
[tool.poetry]
name = "biosim-server"
version = "0.0.1"
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.11"
python-dotenv = "^1.0.1"
fastapi = "^0.115.6"
pydantic = "^2.10.4"
uvicorn = "^0.34.0"
pyyaml = "^6.0.2"
numpy = "^2.2.1"
pandas = "^2.2.3"
chardet = "^5.2.0"
temporalio = "^1.9.0"
aiohttp = "^3.11.11"
motor = {extras = ["srv"], version = "^3.6.0"}
pydantic-settings = "^2.7.1"
python-multipart = "^0.0.20"
gcloud-aio-storage = "^9.3.0"
h5py = "^3.12.1"
[tool.poetry.group.worker.dependencies]
python-libsbml = "^5.20.4"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.4"
mypy = "^1.5.1"
types-requests = "^2.32.0"
types-aiofiles = "^24.1.0.20241221"
types-pyyaml = "^6.0.12.20241230"
motor-types = "^1.0.0b4"
pytest-asyncio = "^0.25.0"
types-aiobotocore = "^2.16.1"
testcontainers = {extras = ["mongodb"], version = "^4.9.0"}
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"