-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (43 loc) · 1.19 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
[tool.poetry]
name = "FAIVOR"
version = "0.1.0"
description = "FAIRmodels-validator"
authors = []
license = "Apache-2.0"
readme = "README.md"
packages = [
{ include = "faivor", from = "src" }]
homepage = "https://github.com/MaastrichtU-BISS/FAIRmodels-validator"
repository = "https://github.com/MaastrichtU-BISS/FAIRmodels-validator"
documentation = "https://github.com/MaastrichtU-BISS/FAIRmodels-validator"
keywords = []
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent"
]
[tool.poetry.dependencies]
python = ">=3.11,<4.0"
pandas = "^2.2.3"
numpy = "^2.1.2"
matplotlib = "^3.9.2"
fastapi = "^0.115.2"
scikit-learn = "^1.5.2"
apscheduler = "^3.10"
uvicorn = "^0.31.1"
pytype = "^2024.10.11"
httpx = "^0.28.1"
fairlearn = "^0.12.0"
torchmetrics = "^1.6.1"
torch = "^2.5.1"
torchvision = "^0.20.1"
torchaudio = "^2.5.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
pytest-datadir = "^1.3.1"
pytest-asyncio = "^0.24.0"
[tool.poetry.scripts]
run-api = "uvicorn src.faivor.api_controller:app --reload"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"