-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 913 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
[tool.poetry]
name = "advent-of-code"
version = "0.1.0"
description = ""
authors = ["Morten Lied Johansen <[email protected]>"]
license = "MIT"
readme = "README.rst"
packages = [{include = "ibidem"}]
[tool.poetry.dependencies]
python = "^3.11"
numpy = "^2.0.0"
vectormath = "^0.2.2"
colorama = "^0.4.6"
requests = "^2.31.0"
networkx = "^3.2.1"
bitstruct = "^8.19.0"
alive-progress = "^3.1.5"
tqdm = "^4.66.1"
sympy = "^1.12"
bpython = "^0.24"
matplotlib = "^3.8.2"
geometry3d = "^0.3.0"
rich = "^13.7.0"
icecream = "^2.1.3"
scipy = "^1.11.4"
pygame = "^2.6.1"
[tool.poetry.scripts]
aoc = "ibidem.advent_of_code.cli:main"
[tool.poetry.group.dev.dependencies]
pytest = "8.3.5"
pytest-xdist = "3.6.1"
pytest-sugar = "1.0.0"
[tool.poetry.group.aoctiles.dependencies]
pillow = "^11.0.0"
requests = "^2.31.0"
pyyaml = "^6.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"