-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
57 lines (41 loc) · 932 Bytes
/
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
[tool.poetry]
package-mode = false
packages = [
{ include = "panda2anno" }
]
[tool.poetry.dependencies]
python = "^3.12"
numpy = "*"
pandas = "*"
pandaset = { path = "pandaset-devkit/python", develop = false }
requests = "*"
pyquaternion = "*"
dataclasses-json = "*"
more-itertools = "*"
annofabapi-3dpc-extensions = "^0.2"
annofab-3dpc-editor-cli = "*"
annofabcli = "*"
[tool.poetry.group.test.dependencies]
pytest = "*"
[tool.poetry.group.formatter.dependencies]
isort = "*"
autoflake = "*"
black = "*"
[tool.poetry.group.linter.dependencies]
flake8 = "*"
mypy = "*"
pylint = "*"
# type sutb
types-requests = "*"
types-PyYAML = "*"
[tool.black]
line-length = 120
[tool.mypy]
ignore_missing_imports = true
check_untyped_defs = true
[tool.isort]
profile = "black"
line_length = 120
[build-system]
requires = ["poetry-core>=1.0.0", "poetry-dynamic-versioning"]
build-backend = "poetry_dynamic_versioning.backend"