Code for the Advent of Code event
aoc advent-of-code
at main 18 lines 490 B view raw
1[project] 2name = "advent-of-code" 3version = "0.1.0" 4description = "Sharparam's Python code for AoC" 5readme = "README.md" 6requires-python = ">=3.14" 7authors = [{ name = "Adam Hellberg", email = "sharparam@sharparam.com" }] 8maintainers = [{ name = "Adam Hellberg", email = "sharparam@sharparam.com" }] 9 10dependencies = [ 11 "jupyterlab>=4.5.0", 12 "networkx[default]>=3.6.1", 13 "notebook>=7.5.0", 14 "numpy>=2.3.5", 15 "scipy>=1.16.3", 16 "shapely>=2.1.2", 17 "z3-solver>=4.15.4.0", 18]