-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (49 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
55 lines (49 loc) · 1.19 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
48
49
50
51
52
53
54
55
[build-system]
requires = ["uv_build>=0.9.7,<0.10.0"]
build-backend = "uv_build"
[project]
name = "aoc"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [{ name = "Geir Arne Hjelle", email = "geirarne@gmail.com" }]
requires-python = ">=3.13"
dependencies = [
"advent-of-code-data>=2.1.0",
"advent-of-code-ocr>=1.1.0",
"colorama>=0.4.6",
"matplotlib>=3.10.7",
"networkx>=3.5",
"numpy>=2.3.4",
"pandas>=2.3.3",
"parse>=1.20.2",
"polars>=1.35.1",
"rich>=14.2.0",
"scipy>=1.16.3",
"shapely>=2.1.2",
"sympy>=1.14.0",
"tabulate>=0.9.0",
]
[project.scripts]
aoc = "aoc.__main__:main"
gaoc = "aoc.__main__:main"
[tool.pytest.ini_options]
addopts = "--doctest-modules --doctest-continue-on-failure"
doctest_optionflags = "NORMALIZE_WHITESPACE"
[tool.docformatter]
recursive = true
wrap-descriptions = 0
[tool.uv.sources]
gahllenges = { path = "../../gahllenges", editable = true }
[dependency-groups]
dev = [
"codetiming>=1.4.0",
"docformatter>=1.7.7",
"gahllenges",
"html2text>=2025.4.15",
"ipython>=9.6.0",
"peek-python>=25.0.24",
"pytest>=8.4.2",
"requests>=2.32.5",
"ruff>=0.14.3",
]