-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
68 lines (61 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
68 lines (61 loc) · 1.72 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "YOLO"
version = "0.1.0"
description = "A sample Python package"
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", "yolovx", "conv-net", "iou", "deep-learning"]
dependencies = [
"loguru==0.7.3",
"python-dotenv==1.0.0",
"tqdm==4.67.1",
"torch==2.8.0",
"matplotlib==3.10.8",
"opencv-python==4.12.0.88",
"torchvision==0.23.0",
"torchinfo==1.8.0",
"albumentations==2.0.8",
]
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/YOLO"
#"Bug Tracker" = "https://github.com/your-username/my-python-package/issues"
[tool.setuptools.packages.find]
where = ["src"]
[project.scripts]
yolo = "yolo.entrypoints.yolo3:main"