-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
63 lines (58 loc) · 1.75 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "globox"
version = "2.4.7"
requires-python = ">=3.9"
dependencies = [
"numpy>=1.26",
"tqdm>=4.65",
"rich>=13.3",
]
authors = [{name = "Louis Lac", email = "lac.louis5@gmail.com"}]
maintainers = [{name = "Louis Lac", email = "lac.louis5@gmail.com"}]
description = "Globox is a package and command line interface to read and convert object detection databases (COCO, YOLO, PascalVOC, LabelMe, CVAT, OpenImage, ...) and evaluate them with COCO and PascalVOC."
readme = "README.md"
keywords = [
"annotation",
"metrics",
"object detection",
"bounding boxes",
"yolo",
"openimages",
"cvat",
"coco",
"pascal voc",
"average precision",
"mean average precision",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://github.com/laclouis5/globox"
Repository = "https://github.com/laclouis5/globox"
Documentation = "https://github.com/laclouis5/globox/#readme"
Issues = "https://github.com/laclouis5/globox/issues"
[project.scripts]
globox = "globox.cli:main"
[dependency-groups]
dev = [
"pytest>=7.3",
"pycocotools>=2.0",
"pillow>=10.2",
"ruff>=0.6",
"pre-commit>=3.8",
]
[tool.hatch.build.targets.sdist]
packages = ["src/globox"]