forked from pybricks/pybricksdev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
68 lines (61 loc) · 1.77 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
[tool.poetry]
name = "pybricksdev"
version = "1.0.0-alpha.14"
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.12.1"
mpy-cross = "1.14"
python = "^3.8"
tqdm = "^4.46.1"
validators = "^0.18.2"
pyusb = "^1.0.2"
semver = "^2.13.0"
appdirs = "^1.4.4"
prompt-toolkit = "^3.0.18"
winrt = {version = "^1.0.21033", platform = "win32"}
[tool.poetry.dev-dependencies]
black = {version = "^21.5b1", allow-prereleases = true}
coverage = {extras = ["toml"], version = "^5.5"}
flake8 = "^3.8.3"
ipykernel = "^5.3.1"
ipywidgets = "^7.6.3"
nbstripout = "^0.3.8"
notebook = "^6.0.3"
pybricks = {version = "3.0.0rc1", allow-prereleases = true}
pytest = "^5.2"
Sphinx = "^4.0.2"
sphinx-rtd-theme = "^0.5.2"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"
[tool.black]
target-version = ['py38']
[tool.coverage.run]
branch = true
command_line = "-m pytest"
source = ["pybricksdev"]