-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 873 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 873 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
[project]
name = "roll-tracker"
version = "0.0.1"
description = "Offline BJJ video pipeline (skeleton)"
authors = [{ name = "Bryan Thomas" }]
requires-python = ">=3.10"
dependencies = [
# Core numeric stack; we intentionally stay on NumPy 1.x to
# avoid ABI issues with downstream wheels that are not yet
# built against NumPy 2.x.
"numpy>=1.26,<2",
"pydantic>=2,<3",
"pandas>=2,<3",
"typer>=0.9,<1",
"pyarrow>=14,<16",
"pyyaml>=6,<7",
"shapely>=2.0,<3",
]
[project.optional-dependencies]
dev = [
"pytest>=7.0",
"opencv-python>=4.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/bjj_pipeline", "src/calibration_pipeline", "src/training_pipeline"]
[tool.hatch.build.targets.sdist]
include = ["src/bjj_pipeline", "src/calibration_pipeline", "src/training_pipeline"]