-
Notifications
You must be signed in to change notification settings - Fork 16
/
pyproject.toml
88 lines (76 loc) · 2.12 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
[tool.poetry]
name = "pybricksdev"
version = "1.0.0-alpha.52"
description = "Pybricks developer tools"
authors = ["The Pybricks Authors <[email protected]>"]
maintainers = ["Laurens Valk <[email protected]>", "David Lechner <[email protected]>" ]
license = "MIT"
readme = "README.md"
homepage = "https://pybricks.com"
repository = "https://github.com/pybricks/pybricksdev"
documentation = "https://docs.pybricks.com/projects/pybricksdev"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Natural Language :: English",
"Operating System :: OS Independent",
]
include = [
"AUTHORS.md"
]
[tool.poetry.urls]
"Changelog" = "https://github.com/pybricks/pybricksdev/blob/master/CHANGELOG.md"
"Support" = "https://github.com/pybricks/support/discussions"
"Issues" = "https://github.com/pybricks/support/issues"
[tool.poetry.scripts]
pybricksdev = 'pybricksdev.cli:main'
[tool.poetry.dependencies]
aioserial = "^1.3.0"
argcomplete = "^1.11.1"
asyncssh = "^2.2.1"
bleak = "^0.22.0"
mpy-cross-v5 = "^1.0.0"
python = ">=3.10,<3.14"
tqdm = "^4.62.3"
pyusb = "^1.0.2"
semver = "^2.13.0"
appdirs = "^1.4.4"
prompt-toolkit = "^3.0.18"
mpy-cross-v6 = "^1.0.0"
packaging = "^22"
typing-extensions = "^4.3.0"
reactivex = "^4.0.4"
hidapi = "^0.14.0"
[tool.poetry.group.notebook.dependencies]
ipykernel = "^5.3.1"
ipywidgets = "^7.6.3"
nbstripout = "^0.3.8"
notebook = "^6.0.3"
pybricks = {version = "^3", allow-prereleases = true}
[tool.poetry.group.lint.dependencies]
black = ">=23,<25"
flake8 = "^6.0.0"
isort = "^5.12.0"
[tool.poetry.group.docs.dependencies]
sphinx = "^6.1.3"
sphinx-rtd-theme = "^1.2.0"
toml = "^0.10.2"
typing-extensions = "^4.5.0"
[tool.poetry.group.test.dependencies]
coverage = {extras = ["toml"], version = "^7.2.3"}
pytest = "^7.3.1"
pytest-asyncio = "^0.21.0"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
target-version = ['py38']
[tool.isort]
profile = "black"
src_paths = ["demo", "pybricksdev", "tests"]
[tool.pytest.ini_options]
asyncio_mode = "strict"
[tool.coverage.run]
branch = true
command_line = "-m pytest"
source = ["pybricksdev"]