forked from viamrobotics/viam-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
61 lines (53 loc) · 1.3 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
[tool.poetry]
name = "viam-sdk"
version = "0.4.7"
description = "Viam Robotics Python SDK"
authors = [ "Naveed <[email protected]>" ]
license = "Apache-2.0"
readme = "README.md"
packages = [
{ include = "viam", from = "src" },
]
include = ["LICENSE", "src/viam/rpc/libviam_rust_utils.*"]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.12"
grpclib = "^0.4.5"
googleapis-common-protos = "^1.59.1"
typing-extensions = "^4.7.1"
Pillow = "^10.0.0"
protobuf = "^4.23.4"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
pytest-asyncio = "^0.21.1"
coverage = "^7.2.7"
protoletariat = "^3.2.14"
jupyter = "^1.0.0"
flake8 = "^6.0.0"
myst-nb = "^0.17.2"
sphinx-autoapi = "^2.1.1"
sphinx-rtd-theme = "^1.2.2"
autopep8 = "^2.0.2"
black = "^23.7.0"
nbmake = "^1.4.1"
types-pillow = "^10.0.0.2"
mypy-protobuf = "^3.4.0"
tox = "^4.6.4"
isort = "^5.12.0"
pytest-watcher = "^0.3.4"
[tool.pytest.ini_options]
addopts = "-ra"
testpaths = "tests"
asyncio_mode = "auto"
[tool.coverage.run]
omit = [ "*/gen/*" ]
[tool.coverage.report]
exclude_lines = [ "pragma: no\\s*cover", "\\.\\.\\." ]
[tool.black]
line-length = 140
[tool.isort]
profile = "black"
skip_glob = ["**/gen/**"]
line_length = 140
[build-system]
requires = [ "poetry-core>=1.0.0" ]
build-backend = "poetry.core.masonry.api"