forked from facebookresearch/detr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
77 lines (63 loc) · 1.46 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
75
76
77
[build-system]
build-backend = "hatchling.build"
requires = [
"hatchling >= 1.11.0",
"pip >= 22.0.0"
]
[project.scripts]
pytorchdetr = "detr:main"
[project]
name = "pytorch_detr"
version = "0.0.1"
description = "DETR: End-toEnd Object Detection with Transformers"
readme = "README.md"
requires-python = ">=3.8"
license-files = { paths = ["LICENSE"] }
authors = [
{ name = "Facebook Research", email = "[email protected]" },
{ name = "Two Six Technologies", email = "[email protected]" },
]
keywords = [
"placeholder"
]
classifiers = [
"Development Status :: 7 - Inactive",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"numpy",
"torch",
"tensorboardX",
"scikit_image",
"matplotlib",
"tqdm",
"easydict",
"Pillow",
"opencv_python",
"pycocotools",
"cython",
"submitit",
"scipy",
"onnx",
"onnxruntime"
]
[project.optional-dependencies]
third-party = [
"panopticapi @ git+https://github.com/cocodataset/panopticapi.git"
]
[project.urls]
GitHub = "https://github.com/twosixlabs/detr"
[tool.hatch.build]
ignore-vcs = false
reproducible = true
directory = "dist"
include = [
"detr/",
"LICENSE",
"pyproject.toml",
"README.md"
]
[tool.hatch.metadata]
allow-direct-references = true