-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
74 lines (62 loc) · 1.52 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
69
70
71
72
73
[tool.poetry]
name = "toio.py"
version = "1.1.0"
description = "Control toio™Core Cube"
authors = ["Sony Interactive Entertainment"]
readme = "README.md"
packages = [{include = "toio"}]
license = "MIT"
repository = "https://github.com/toio/toio.py"
homepage = "https://toio.io/"
keywords = ["toio"]
[tool.poetry.dependencies]
python = ">=3.8.1,<3.13"
typing-extensions = "^4.10.0"
bleak = ">=0.22.1"
setuptools = "^69.5.1"
[tool.poetry.group.dev.dependencies]
pyright = "^1.1.361"
isort = "^5.13.2"
pytest = "^8.2.0"
pytest-asyncio = "^0.23.5"
autopep8 = "^2.0.2"
black = "^24.4.2"
ipykernel = "^6.29.3"
sphinx = "^7.1.0"
pytest-cov = "^5.0.0"
coverage = "^7.5.1"
flake8 = "^7.0.0"
mypy = "^1.10.0"
pytest-mock = "^3.12.0"
poethepoet = "^0.26.1"
sphinx-rtd-theme = "^2.0.0"
pygments = "^2.17.2"
poetry = "^1.8.2"
colorama = "^0.4.6"
sphinx-multiversion = "^0.2.4"
sphinx-nefertiti = "^0.3.2"
m2r = "^0.3.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pyright]
ignore = ["tutorial/*"]
[tool.isort]
profile = "black"
[tool.black]
line-length = 88
[tool.pytest.ini_options]
minversion = "6.0"
# addopts = "--cov toio --log-cli-level=INFO"
addopts = "--log-cli-level=INFO"
pythonpath = "toio"
testpaths = ["tests"]
[tool.mypy]
python_version = "3.8"
exclude = ["pythonista3corebluetooth"]
[tool.ruff]
line-length = 88
exclude = ["pythonista3corebluetooth"]
[tool.poe.tasks]
update-apidocs = { "shell" = "./mkdocs/mkdocs.sh --rebuild" }
check-coverage = { "shell" = "./tests/check_coverage.sh" }