-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
67 lines (60 loc) · 1.94 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
[tool.poetry]
name = "aveas_openlabel"
# When bumping this version, don't forget to update aveas_openlabel.metadata.Metadata.aveas_schema_version!
version = "0.4.16"
description = "The AVEAS OpenLABEL specification"
license = "MIT"
authors = ["understand.ai <postmaster@understand.ai>"]
readme = "README.md"
repository = "https://github.com/understand-ai/aveas_openlabel"
keywords = ["ASAM OpenLABEL", "AVEAS"]
packages = [{include = "aveas_openlabel"}]
include = ["aveas_openlabel/py.typed"]
[[tool.poetry.source]]
name = "PyPI"
priority = "default"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
apischema = { version = "^0.18.0", source = "PyPI" }
uai_openlabel = { version = "^0.3.8", source = "PyPI" }
[tool.poetry.group.dev.dependencies]
mypy = "^1.0.0"
pydoctor = "^23.4.1"
pytest = "^7.0.1"
pytest-cov = "^3.0.0"
black = {extras = ["d"], version = "^24.4.2"}
ruff = "^0.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 128
target-version = ['py39', 'py310', 'py311', 'py312']
[tool.ruff.lint]
select = [ "E","F","W","I","N","TRY","RUF" ]
ignore = [ "N801", "W291", "TRY003", "E501", "RUF002" ]
[tool.pydoctor]
add-package = "aveas_openlabel/"
html-output = "documentation/"
project-name = "AVEAS OpenLABEL"
project-url = "https://aveas.org/"
make-html = true
docformat = "restructuredtext"
theme = "readthedocs"
pyval-repr-maxlines = 0
warnings-as-errors = true
template-dir = "pydoctor_templates/"
privacy = [
"HIDDEN:**.__*",
"PRIVATE:aveas_openlabel.attributes",
"PRIVATE:aveas_openlabel.classifications",
"PRIVATE:aveas_openlabel.contexts",
"PRIVATE:aveas_openlabel.object_data",
"PRIVATE:aveas_openlabel.object_in_frame_data",
"PRIVATE:aveas_openlabel.attribute_enforcer",
"HIDDEN:aveas_openlabel.aveas_openlabel",
"PRIVATE:aveas_openlabel.event",
"PRIVATE:aveas_openlabel.frame",
"PRIVATE:aveas_openlabel.metadata",
"PRIVATE:aveas_openlabel.utils",
]