➕ [Add] a minimal pyproject.toml (#19)
Browse filesThank you for your contribution! Your pull request addresses exactly what this project needs and will be merged.
Best regards,
Hao-Tang Tsui
- pyproject.toml +16 -0
pyproject.toml
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[project]
|
| 2 |
+
name = "yolov9mit"
|
| 3 |
+
version = "0.0.0"
|
| 4 |
+
dynamic = ["dependencies"]
|
| 5 |
+
|
| 6 |
+
[tool.setuptools.dynamic]
|
| 7 |
+
dependencies = {file = ["requirements.txt"]}
|
| 8 |
+
|
| 9 |
+
[tool.setuptools.packages.find]
|
| 10 |
+
where = ["yolo"]
|
| 11 |
+
|
| 12 |
+
[build-system]
|
| 13 |
+
build-backend = "setuptools.build_meta"
|
| 14 |
+
requires = [
|
| 15 |
+
"setuptools",
|
| 16 |
+
]
|