-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
68 lines (62 loc) · 2.06 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
[tool.poetry]
name = "bboxconverter"
version = "0.1.8"
description = "Converting bounding box annotations to popular formats like a breeze."
readme = "README.md"
license = "GLP-3.0"
keywords = [
"bbox converter",
"bbox",
"converter",
"bounding box",
"annotation",
"coco",
"yolo",
"voc",
"object detection",
"bboxtools",
"bboxutils",
"train",
"test",
"split"
]
authors = ["Olivier D'Ancona <[email protected]>"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.urls]
repository = "https://github.com/ODAncona/bboxconverter.git"
documentation = "https://bboxconverter.readthedocs.io/en/latest/index.html"
[tool.poetry.dependencies]
python = ">=3.8"
pandas = "^1.5.2"
scikit-learn = "^1.2.1"
lxml = "^4.9.2"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
pytest-cov = "^4.0.0"
myst-nb = {version = "^0.17.1", python = "^3.8"}
sphinx-autoapi = "^2.0.1"
sphinx-rtd-theme = "^1.2.0"
scikit-image = "^0.21.0"
[tool.semantic_release]
version_variable = "pyproject.toml:version" # version location
branch = "main" # branch to make releases of
changelog_file = "CHANGELOG.md" # changelog file
build_command = "poetry build" # build dists
dist_path = "dist/" # where to put dists
upload_to_release = false # auto-create GitHub release
upload_to_pypi = false # don't auto-upload to PyPI
remove_dist = false # don't remove dists
patch_without_tag = true # patch release by default
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"