-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (39 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
47 lines (39 loc) · 1.21 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
47
[tool.poetry]
name = "designing-w-python-playground"
version = "0.1.0"
description = "Curso Designing with Python: Programming for a Visual Context (Domestika). Playground de creative coding com py5."
authors = ["Fefe Alves <falves.ds.lab@gmail.com>"]
license = "MIT"
readme = "README.md"
package-mode = false
[tool.poetry.dependencies]
python = ">=3.12,<3.13"
py5 = ">=0.10.7a0,<0.11.0" # série 0.10.x com alpha permitido
[tool.poetry.group.dev.dependencies]
jupyter = "^1.1"
ipykernel = "^6.29"
black = "^25.9.0"
ruff = "^0.13.3"
pre-commit = "^4.3.0"
nbstripout = "^0.8.1"
pytest = "^8.4.2"
# Ferramentas para exportar frames/GIF/MP4 (lembrete: instalar ffmpeg via brew)
[tool.poetry.group.art.dependencies]
pillow = "^11.0"
imageio = { version = "^2.34", extras = ["ffmpeg"] }
# Docs (mkdocs já vem como dependência de mkdocs-material)
[tool.poetry.group.docs.dependencies]
mkdocs-material = "^9.6.21"
[build-system]
requires = ["poetry-core>=1.8.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
target-version = ["py312"]
[tool.ruff]
line-length = 100
target-version = "py312"
select = ["E", "F", "I"] # erros básicos + import order
[tool.pytest.ini_options]
addopts = "-q"
testpaths = ["tests"]