-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (52 loc) · 1.57 KB
/
pyproject.toml
File metadata and controls
56 lines (52 loc) · 1.57 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
[project]
name = "annotation-parser"
version = "0.1.0"
description = "AnnotationParser is a universal Python library that parses annotation files from different formats (LabelMe, COCO, VOC, etc.) into a single unified Shape data structure. This allows you to work with annotations using a consistent interface, regardless of the original format."
authors = [
{ name = "migutin83", email = "migutin83@yandex.ru" }
]
readme = "README.md"
license = "MIT"
keywords = [
"annotation",
"annotations",
"annotation-tool",
"labelme",
"labelme-annotations",
"labelme-json",
"parser",
"dataset",
"coco",
"voc",
"yolo",
"cvat",
"roboflow"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
requires-python = ">=3.10"
dependencies = [
"shapely (>=2.1.1,<3.0.0)",
"pydantic (>=2.11.7,<3.0.0)"
]
packages = [{ include = "annotation_parser", from = "src" }]
[tool.poetry.scripts]
annotation-parser = "src.annotation_parser.cli:main"
[tool.poetry.group.dev.dependencies]
pytest = "^8.4.1"
mypy = "^1.10.0"
black = "^24.4.2"
ruff = "^0.4.4"
pytest-cov = "^5.0.0"
[project.urls]
"Homepage" = "https://github.com/omigutin/annotation_parser"
"Bug Tracker" = "https://github.com/omigutin/annotation_parser/issues"
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"