-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
80 lines (73 loc) · 2.17 KB
/
Copy pathpyproject.toml
File metadata and controls
80 lines (73 loc) · 2.17 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "YOLO8"
version = "0.1.1"
description = "Open source YOLO model implementation from scratch in PyTorch"
readme = "README.md"
authors = [
{ name = "DOCTOR MOKIRA", email = "dr.mokira@gmail.com" },
]
maintainers = [
{ name = "CONSOLE ART CYBERNETIC", email = "ca.cybernetic@gmail.com" },
]
license = { file = "LICENSE" }
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Operating System :: OS Independent",
]
keywords = ["object-detection", "yolov8", "conv-net", "iou", "deep-learning", "computer-vision"]
dependencies = [
"pyyaml==6.0.3",
"loguru==0.7.3",
"python-dotenv==1.0.0",
"tqdm==4.67.1",
"pandas==2.3.3",
"matplotlib==3.10.8",
"pillow==12.1.1",
"opencv-python==4.12.0.88",
"torch==2.8.0",
"torchvision==0.23.0",
"torchinfo==1.8.0",
"h5py>=3.10",
"onnx==1.21.0",
"onnxruntime==1.23.2",
"onnxsim==0.6.2",
"onnxconverter-common==1.16.0",
]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = [
"ipython",
"pytest==8.2"
]
[tool.isort]
line_length = 120
multi_line_output = 0
[tool.yapf]
based_on_style = "pep8"
spaces_before_comment = 2
column_limit = 120
[project.urls]
"Homepage" = "https://github.com/cacybernetic/YOLO8"
#"Bug Tracker" = "https://github.com/your-username/my-python-package/issues"
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
buildh5ds = "yolov8.entrypoints.buildds:main"
trainyolo8 = "yolov8.entrypoints.train:main"
evalyolo8 = "yolov8.entrypoints.evaluate:main"
runyolo8 = "yolov8.entrypoints.inference:main"
ftyolo8 = "yolov8.entrypoints.finetuning:main"
exportw = "yolov8.entrypoints.exportmodel:main"