-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (39 loc) · 1.06 KB
/
pyproject.toml
File metadata and controls
43 lines (39 loc) · 1.06 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
[project]
name = "advent-2025"
version = "0.1.0"
description = "My solutions for advent of code 2025"
readme = "README.md"
requires-python = ">=3.13,<3.14"
dependencies = [
"advent-of-code-data>=2.1.0",
"bokeh>=3.8.1",
"icecream>=2.1.8",
"jupyterlab>=4.5.0",
"jupyterlab-ariakedark-theme>=0.2.3",
"jupyterlab-git>=0.51.2",
"jupyterlab-lsp>=5.2.0",
"jupyterlab-nord-theme>=0.1.1",
"jupyterlab-vim>=4.1.4",
"matplotlib>=3.10.7",
"nodejs-wheel>=24.11.1",
"pandas>=2.3.3",
"parse>=1.20.2",
"pre-commit>=4.5.0",
"pre-commit-uv>=4.2.0",
"pytest>=9.0.1",
"stellars-jupyterlab-darcula-theme>=1.0.43",
"watchfiles>=1.1.1",
]
[tool.uv]
reinstall-package = ["advent_2025"]
[tool.ruff]
fix = true
target-version = "py313"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "ERA", "C", "RUF", "PLC", "PLE", "PLR", "PLW", "A", "RET", ]
ignore = [
"PLR2004", # there are a lot of "magic numbers" in aoc
"E501", # line too long
]
[tool.ruff.lint.per-file-ignores]
"wip.py" = [ "F401" ]