forked from pybricks/pybricks-micropython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (39 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
46 lines (39 loc) · 1.07 KB
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
[tool.poetry]
name = "pybricks-micropython"
version = "0.1.0"
description = "Development dependencies for pybricks-micropython"
authors = ["The Pybricks Authors <dev@pybricks.com>"]
license = "MIT"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.10,<4.0"
[tool.poetry.group.dev.dependencies]
eventlet = "^0.40.3"
flake8 = "^3.8.3"
matplotlib = "^3.4.3"
pybricks = {version = "^3.0.0a5", allow-prereleases = true}
pybricksdev = "^2.3.0"
pycryptodomex = "^3.9.9"
python-dotenv = "^0.15.0"
python-socketio = "^5.7.2"
scipy = "^1.8.1"
sympy = "^1.10.1"
pre-commit = ">=3.6.2"
pygame = "^2.6.1"
[tool.poetry.group.build.dependencies]
azure-data-tables = "^12.4.2"
gql = {extras = ["requests"], version = "^3.4.0"}
gitpython = "^3.1.31"
plotly = "^5.14.1"
pygithub = "^1.58.1"
freetype-py = "^2.5.1"
cairosvg = "^2.9.0"
pillow = "^12.1.1"
[tool.poetry.group.lint.dependencies]
micropython-uncrustify = "^1.0.0.post1"
ruff = "^0.12.1"
[tool.ruff]
extend-exclude = ["lib/btstack/", "micropython/"]
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"