-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (54 loc) · 1.65 KB
/
pyproject.toml
File metadata and controls
61 lines (54 loc) · 1.65 KB
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
[build-system]
requires = ["setuptools>=64.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "detmet"
version = "0.1.0"
authors = [
{name = "Matheus Levy", email = "matheus.levy@nca.ufma.br"},
]
description = "Comprehensive metrics calculator for object detection tasks"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = ["object detection", "metrics", "coco", "precision", "recall", "mAP"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research"
]
dependencies = [
"numpy>=2.0.1",
"matplotlib>=3.10.0",
"seaborn>=0.13.0",
"pycocotools>=2.0.10",
]
[project.optional-dependencies]
test = [
"pytest>=8.2.2",
"pytest-cov>=4.0",
"coverage>=7.0"
]
dev = [
"twine>=5.0.0",
"build>=1.2.0",
"ipython>=8.0.0"
]
[project.urls]
homepage = "https://github.com/viplabufma/ObjectDetectionMetricsLibrary"
documentation = "https://github.com/viplabufma/ObjectDetectionMetricsLibrary#readme"
repository = "https://github.com/viplabufma/ObjectDetectionMetricsLibrary"
issues = "https://github.com/viplabufma/ObjectDetectionMetricsLibrary/issues"
[tool.setuptools]
py-modules = []
[tool.setuptools.packages.find]
where = ["."]
include = ["detmet*"]
[tool.setuptools.package-data]
"detmet" = ["*.txt", "*.md", "*.json"]
[tool.setuptools.exclude-package-data]
"*" = ["*.pyc", "*.pyo", "__pycache__", "*.gitignore"]