-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
42 lines (39 loc) · 1.17 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tracklet_parser"
version = "1.0.1"
dependencies = [
"black",
"codespell",
"docformatter",
"isort",
"numpy",
"pandas",
"pre-commit",
"pylint",
"wheel",
]
requires-python = ">=3.10"
maintainers = [
{ name = "Bjoern Holtvogt", email = "bjoern.holtvogt@gmail.com" },
]
description = "A parser for tracklet labels in KITTI Raw Format 1.0 created by the Computer Vision Annotation Tool (CVAT)."
readme = { file = "README.md", content-type = "text/markdown" }
license = { file = "LICENSE.txt" }
keywords = ["tracklet", "cvat", "kitti", "annotation"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Topic :: Software Development",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
]
[project.urls]
repository = "https://github.com/holtvogt/tracklet_parser"
issues = "https://github.com/holtvogt/tracklet_parser/issues"
changelog = "https://github.com/holtvogt/tracklet_parser/blob/develop/CHANGELOG.md"
[tool.setuptools]
packages = ["tracklet_parser"]
package-dir = { "" = "src" }