forked from Tianxiaomo/pytorch-YOLOv4
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
66 lines (52 loc) · 1.27 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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling >= 1.11.0",
"pip >= 22.0.0"
]
[project.scripts]
pytorchyolo = "pytorch_yolo.examples.demo:main"
[project]
name = "pytorch_yolo"
version = "0.0.1"
description = "PyTorch, ONNX and TensorRT implementation of YOLOv4"
readme = "README.md"
requires-python = ">=3.8"
license-files = { paths = ["LICENSE"] }
authors = [
{ name = "Tianxiaomo", email = "Tianxiaomo@github.com" },
{ name = "Two Six Technologies", email = "armory@twosixtech.com" },
]
keywords = [ ]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy",
"torch",
"tensorboardX",
"scikit_image",
"matplotlib",
"tqdm",
"easydict",
"Pillow",
"opencv_python",
"pycocotools",
]
[project.urls]
GitHub = "https://github.com/twosixlabs/pytorch_YOLOv4"
[tool.hatch.build]
ignore-vcs = false
reproducible = true
directory = "dist"
include = [
"pytorch_yolo/",
"LICENSE",
"pyproject.toml",
"README.md"
]
[tool.hatch.metadata]
allow-direct-references = true