File size: 803 Bytes
0cfefd2 | 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 | [build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "wjad"
version = "0.1.0"
description = "End-to-end autonomous driving model with DINOv3, GateSelfAttention backbone, MoE, online calibration."
requires-python = ">=3.10"
dependencies = [
"torch>=2.4",
"transformers>=4.56",
"safetensors>=0.4",
"numpy>=1.24",
"opencv-python>=4.8",
"einops>=0.7",
"scipy>=1.11",
"pyyaml>=6.0",
"tqdm>=4.66",
"huggingface_hub>=0.24",
"pillow>=10.0",
"av>=12.0",
]
[project.optional-dependencies]
dev = [
"pytest>=7",
"pytest-cov>=4",
"ruff>=0.5",
]
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 120
target-version = "py310"
|