-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
executable file
·74 lines (64 loc) · 1.92 KB
/
pyproject.toml
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
[build-system]
requires = ["hatchling", "hatch-requirements-txt", "hatch-regex-commit"]
build-backend = "hatchling.build"
[project]
name = "depthai_yolo"
authors = [
{ name = "Luxonis", email = "[email protected]" },
]
maintainers = [
{ name = "Richard", email = "[email protected]" },
]
description = "YOLOs object detection example using DepthAI"
requires-python = ">= 3.8"
license = { text = "MIT License" }
readme = "README.md"
keywords = ["depthai", "yolo", "object detection"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["version", "dependencies",]
[project.urls]
Repository = "https://github.com/richard-xx/DepthAI_Yolo.git"
"Bug Tracker" = "https://github.com/richard-xx/DepthAI_Yolo/issues"
[project.scripts]
depthai_yolo = "depthai_yolo.cli:app"
depthai_yolo_download = "depthai_yolo.download_models:app"
[project.optional-dependencies]
doc = [
"mkdocs-material>=9.5.27",
"mkdocs-typer>=0.0.3",
]
[tool.hatch.version]
source = "regex_commit"
path = "src/depthai_yolo/__init__.py"
commit_message = "🚀 Bump version {current_version} → {new_version}"
tag_message = "🔖 New version {new_version}"
tag_sign = false
[tool.hatch.build.targets.sdist]
exclude = [
"test",
"docs",
"examples",
"tools",
"*.lock",
]
[tool.hatch.build.targets.wheel]
packages = ["src/depthai_yolo"]
sources = { "src/depthai_yolo" = "depthai_yolo" }
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements/requirements.in"]
[tool.uv]
package = true
dev-dependencies = [
"pip>=24.2",
"setuptools>=74.1.0",
]