Iuri de Silvio commited on
Commit
09d9de8
·
unverified ·
1 Parent(s): 1e97874

➕ [Add] a minimal pyproject.toml (#19)

Browse files

Thank you for your contribution! Your pull request addresses exactly what this project needs and will be merged.

Best regards,
Hao-Tang Tsui

Files changed (1) hide show
  1. 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
+ ]