-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (42 loc) · 899 Bytes
/
pyproject.toml
File metadata and controls
49 lines (42 loc) · 899 Bytes
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
[project]
name = "model-serving-platform"
version = "0.1.0"
description = "Model serving platform"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"fastapi>=0.116.1",
"httpx>=0.28.1",
"numpy>=2.3.3",
"prometheus-client>=0.23.1",
"pydantic>=2.11.9",
"pydantic-settings>=2.11.0",
"torch>=2.4.0",
"torch-geometric>=2.6.0",
"uvicorn>=0.35.0",
]
[dependency-groups]
dev = [
"pytest>=9.0.1",
"pytest-cov>=7.0.0",
"ruff>=0.4.0",
"pre-commit>=4.0.0",
"nox>=2024.4.15",
"mypy>=1.10.0",
"bandit>=1.7.9",
"typing-extensions",
]
[tool.pytest.ini_options]
pythonpath = ["src"]
testpaths = ["tests"]
[tool.coverage.run]
source = ["src"]
omit = ["tests/*"]
[tool.ruff]
target-version = "py313"
line-length = 88
[tool.mypy]
strict = true
[[tool.mypy.overrides]]
module = ["torch_geometric.*"]
ignore_missing_imports = true