-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
66 lines (58 loc) · 1.34 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
[tool.poetry]
name = "zivid-nova"
version = "0.0.1"
description = "Nova plugin for Zivid 3D cameras."
authors = [
"Patrick Schmager <patrick.schmager@wandelbots.com>",
"André Kühnert <andre.kuehnert@wandelbots.com>",
"Leonard Hansing <leonard.hansing@wandelbots.com",
]
include = [
"zivid_nova"
]
[tool.poetry.dependencies]
python = ">=3.11, <=3.12.6"
fastapi = "^0.112.1"
uvicorn = "^0.30.6"
loguru = "^0.7.2"
python-decouple = "^3.8"
zivid = "2.13.1.2.13.1"
scipy = "^1.14.1"
pillow = "^10.4.0"
rerun-sdk = "^0.20.3"
point-cloud-utils = "^0.31.0"
[tool.poetry.extras]
all = ["zivid"]
[tool.poetry.group.dev.dependencies]
black = "^23.3.0"
pytest = "^8.2.0"
isort = "^5.13.2"
pylint = "^3.2.2"
mypy = "^1.10.0"
pytest-cov = "^5.0.0"
pytest-asyncio = "^0.23.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
serve = "zivid_nova:main"
generate-schema = "zivid_nova:generate_schema"
[tool.pytest.ini_options]
addopts = """
--cov=zivid_nova
--cov-report xml:reports/cov.xml
--junitxml=reports/pytest.xml
--import-mode=importlib"""
junit_family = "xunit2"
norecursedirs = "develop .ipynb_checkpoints .venv .tox *.egg"
testpaths = """
tests
docs
zivid_nova
"""
[tool.black]
line-length = 120
target-version = ['py311']
[tool.isort]
profile = "black"
line_length = 120