analysis-voidlinux-popcorn/pyproject.toml
Marty Oehme 761cd9b2ad
Add watchdog dev dependency
For the --watch option in marimo
2025-10-01 14:32:54 +02:00

29 lines
535 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",
"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 = [
"watchdog>=6.0.0",
]