|
1 | | -[tool.poetry] |
2 | | -name = "pybricksdev" |
3 | | -version = "0.1.0" |
4 | | -description = "Pybricks developer tools" |
5 | | -authors = [ "The Pybricks Authors <[email protected]>"] |
6 | | -maintainers = [ "Laurens Valk <[email protected]>", "David Lechner <[email protected]>" ] |
7 | | -license = "MIT" |
8 | | -readme = "README.md" |
9 | | -homepage = "https://pybricks.com" |
10 | | -repository = "https://github.com/pybricks/pybricksdev" |
11 | | -classifiers = [ |
12 | | - "Development Status :: 3 - Alpha", |
13 | | - "Intended Audience :: Developers", |
14 | | - "Natural Language :: English", |
15 | | - "Operating System :: OS Independent", |
16 | | -] |
17 | | -include = [ |
18 | | - "AUTHORS.md" |
19 | | -] |
20 | | - |
21 | | -[tool.poetry.scripts] |
22 | | -pybricksdev = 'pybricksdev.cli:main' |
23 | | - |
24 | | -[tool.poetry.dependencies] |
25 | | -aioserial = "^1.3.0" |
26 | | -argcomplete = "^1.11.1" |
27 | | -asyncssh = "^2.2.1" |
28 | | -bleak = "^0.11.0" |
29 | | -mpy-cross = "==1.12" |
30 | | -python = "~3.8" |
31 | | -tqdm = "^4.46.1" |
32 | | -validators = "^0.18.2" |
33 | | -pyusb = "^1.0.2" |
34 | | - |
35 | | -[tool.poetry.dev-dependencies] |
36 | | -flake8 = "^3.8.3" |
37 | | -pytest = "^5.2" |
38 | | -pybricks = { git = "https://github.com/pybricks/pybricks-api.git", branch = "master" } |
39 | | -notebook = "^6.0.3" |
40 | | -ipykernel = "^5.3.1" |
41 | | -nbstripout = "^0.3.8" |
42 | | - |
43 | | -[build-system] |
44 | | -requires = ["poetry>=0.12"] |
45 | | -build-backend = "poetry.masonry.api" |
| 1 | +[tool.poetry] |
| 2 | +name = "pybricksdev" |
| 3 | +version = "1.0.0-alpha.0" |
| 4 | +description = "Pybricks developer tools" |
| 5 | +authors = [ "The Pybricks Authors <[email protected]>"] |
| 6 | +maintainers = [ "Laurens Valk <[email protected]>", "David Lechner <[email protected]>" ] |
| 7 | +license = "MIT" |
| 8 | +readme = "README.md" |
| 9 | +homepage = "https://pybricks.com" |
| 10 | +repository = "https://github.com/pybricks/pybricksdev" |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 3 - Alpha", |
| 13 | + "Intended Audience :: Developers", |
| 14 | + "Natural Language :: English", |
| 15 | + "Operating System :: OS Independent", |
| 16 | +] |
| 17 | +include = [ |
| 18 | + "AUTHORS.md" |
| 19 | +] |
| 20 | + |
| 21 | +[tool.poetry.scripts] |
| 22 | +pybricksdev = 'pybricksdev.cli:main' |
| 23 | + |
| 24 | +[tool.poetry.dependencies] |
| 25 | +aioserial = "^1.3.0" |
| 26 | +argcomplete = "^1.11.1" |
| 27 | +asyncssh = "^2.2.1" |
| 28 | +bleak = "^0.11.0" |
| 29 | +mpy-cross = "==1.12" |
| 30 | +python = "~3.8" |
| 31 | +tqdm = "^4.46.1" |
| 32 | +validators = "^0.18.2" |
| 33 | +pyusb = "^1.0.2" |
| 34 | + |
| 35 | +[tool.poetry.dev-dependencies] |
| 36 | +flake8 = "^3.8.3" |
| 37 | +pytest = "^5.2" |
| 38 | +pybricks = { git = "https://github.com/pybricks/pybricks-api.git", branch = "master" } |
| 39 | +notebook = "^6.0.3" |
| 40 | +ipykernel = "^5.3.1" |
| 41 | +nbstripout = "^0.3.8" |
| 42 | + |
| 43 | +[build-system] |
| 44 | +requires = ["poetry>=0.12"] |
| 45 | +build-backend = "poetry.masonry.api" |
0 commit comments