| [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" |
|
|