-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 807 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 807 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
[project]
name = "structural-exhaustion"
version = "0.1.0"
description = "Lean proof framework with Flask and React documentation."
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"Flask>=3.1,<4",
"gunicorn>=23,<24",
"jsonschema>=4.22,<5",
"pydantic>=2.11,<3",
"pytest>=8,<10",
]
[project.optional-dependencies]
fashion-mnist = [
"numpy>=2.1,<3",
"pandas>=2.2,<4",
"scikit-learn>=1.6,<2",
"torch>=2.6,<3",
"torchvision>=0.21,<1",
"xgboost>=3,<4",
]
[tool.uv]
package = false
[[tool.uv.index]]
name = "pytorch-cpu"
url = "https://download.pytorch.org/whl/cpu"
explicit = true
[tool.uv.sources]
torch = { index = "pytorch-cpu" }
torchvision = { index = "pytorch-cpu" }
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
pythonpath = ["."]