analysis-voidlinux-popcorn/pyproject.toml
Marty Oehme cccc2f6bd4
Add jupyter as dev dependency
We technically only need it to 'develop' the article. Not sure if it
should go in another optional group or just the main dependencies - but
e.g. marimo notebook analyses can be run without, and it's big.
2025-10-07 17:59:43 +02:00

31 lines
583 B
TOML

[project]
name = "voidlinux-popcorn"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"great-tables>=0.18.0",
"lets-plot>=4.7.3",
"marimo[recommended]>=0.16.2",
"matplotlib>=3.10.6",
"polars>=1.33.1",
]
[tool.pyright]
typeCheckingMode = "basic"
reportUnusedExpression = false
reportUnusedVariable = false
[tool.ruff.lint]
ignore = ["F841"]
[tool.marimo.runtime]
dotenv = [".env"]
watcher_on_save = "autorun"
[dependency-groups]
dev = [
"jupyter>=1.1.1",
"watchdog>=6.0.0",
]