YOLO / pyproject.toml
henry000's picture
👷 [Add] more pre-commit, yaml-check & nbsripout
a7ef999
raw
history blame contribute delete
695 Bytes
[project]
name = "yolo"
version = "0.1.0"
dynamic = ["dependencies"]
description = "Official Implementation of YOLO"
authors = [
{ name = "Hao-Tang, Tsui", email = "[email protected]" },
]
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.6"
keywords = ["yolo", "object detection", "computer vision"]
[tool.setuptools.dynamic]
dependencies = {file = ["requirements.txt"]}
[tool.setuptools.packages.find]
where = ["."]
include = ["yolo*"]
[tool.setuptools]
package-data = {"yolo" = ["**/*.yaml"]}
include-package-data = true
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools",
]
[project.scripts]
yolo = "yolo.lazy:main"