forked from openml-labs/server-demo
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
86 lines (77 loc) · 1.88 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
[project]
name = "aiod_metadata_catalogue"
description = "A Metadata Catalogue for AI on Demand "
version = "1.3.20241030"
requires-python = ">=3.11"
authors = [
{ name = "Adrián Alcolea" },
{ name = "Antonis Ganios" },
{ name = "Giannis Mouchakis" },
{ name = "Íñigo Aréjula Aísa" },
{ name = "Jean Matias" },
{ name = "Jos van der Velde", email = "j.d.v.d.velde@tue.nl" },
{ name = "Pieter Gijsbers", email = "p.gijsbers@tue.nl"},
{ name = "Taniya Das", email = "t.das@tue.nl" }
]
dependencies = [
"urllib3== 2.2.3",
"bibtexparser==1.4.1",
"huggingface_hub==0.23.4",
"fastapi==0.115.6",
"uvicorn==0.25.0",
"requests==2.32.3",
"mysqlclient==2.2.4",
"oic==1.6.0",
"python-keycloak==3.7.0",
"python-dotenv==1.0.1",
"pytz==2024.2",
"pydantic_schemaorg==1.0.6",
"python-dateutil==2.9.0.post0",
"ratelimit==2.2.1",
"sqlmodel==0.0.22",
"typing_inspect==0.9.0",
"httpx==0.28.1",
"sickle==0.7.0",
"xmltodict==0.14.2",
"python-multipart==0.0.19",
"mysql-connector-python==9.1.0",
"elasticsearch==8.16.0",
"jinja2==3.1.4",
]
readme = "README.md"
[project.optional-dependencies]
dev = [
"types-python-dateutil==2.9.0.20240316",
"pytest==8.3.2",
"pytest-asyncio==0.24.0",
"pytest-dotenv==0.5.2",
"pytest-xdist==3.6.1",
"pre-commit==4.0.1",
"responses==0.25.3",
"freezegun==1.5.1",
]
docs = [
"mkdocs-material",
"mkdocs-section-index",
]
[tool.setuptools]
py-modules = []
[tool.black]
line-length = 100
[tool.ruff]
exclude = [
"src/tests",
]
[tool.ruff.lint]
select = ["S"]
[tool.pytest.ini_options]
filterwarnings = [
"ignore::FutureWarning"
]
env_override_existing_values = 1
env_files = [
"src/.env",
"src/tests/.env",
".env", # Only used if running from docker container
"tests/.env" # Only used if running from docker container
]