-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (38 loc) · 933 Bytes
/
pyproject.toml
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]
authors = ["Your Name <your.email@example.com>"]
description = "A starter template for marimo notebooks with Poetry"
name = "marimo-template"
packages = [{include = "src"}]
readme = "README.md"
version = "0.1.0"
[tool.poetry.dependencies]
marimo = "^0.10.12"
python = "^3.12"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0.1"
pytest = "^8.0.0"
ruff = "^0.1.13"
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.pytest.ini_options]
pythonpath = ["."]
testpaths = ["tests", "src"]
[tool.ruff]
line-length = 100
target-version = "py312"
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # pyflakes
"I", # isort
"B", # flake8-bugbear
]
[tool.marimo.ai]
rules = "- prefer polars over pandas\n- make charts using altair"
[tool.marimo.save]
autosave = "after_delay"
autosave_delay = 1000
format_on_save = true
[tool.marimo.package_management]
manager = "uv"