Skip to content

Commit dd6a130

Browse files
authored
Merge pull request #145 from GriceTurrble/feat/2024-day1-python
feat: 2024 python added
2 parents fda8c4b + b9f01cb commit dd6a130

11 files changed

+1273
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -144,3 +144,4 @@ cython_debug/
144144

145145
node_modules/
146146
.ruff_cache/
147+
.DS_Store

2024/python/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# AoC 2024, in Python

2024/python/pyproject.toml

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
[project]
2+
name = "grice-py-aoc-2024"
3+
version = "2024.12.1"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
authors = [{ name = "Galen Rice", email = "[email protected]" }]
7+
requires-python = ">=3.13"
8+
dependencies = ["httpx>=0.28.0", "polars>=1.16.0"]
9+
10+
[project.scripts]
11+
day01 = "grice_py_aoc_2024.day01.main:main"
12+
13+
[dependency-groups]
14+
dev = ["pytest>=8.3.4"]
15+
16+
[build-system]
17+
requires = ["hatchling"]
18+
build-backend = "hatchling.build"
19+
20+
[tool.pytest.ini_options]
21+
addopts = """
22+
--verbose
23+
"""

2024/python/src/grice_py_aoc_2024/__init__.py

Whitespace-only changes.

2024/python/src/grice_py_aoc_2024/day01/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)