-
Notifications
You must be signed in to change notification settings - Fork 15
/
pyproject.toml
61 lines (51 loc) · 1.48 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[tool.poetry]
name = "adventofcode"
version = "2023"
description = "Advent of Code puzzle solutions"
authors = ["Martijn Pieters <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/mjpieters/adventofcode"
keywords = ["advent-of-code", "aoc", "puzzles", "solutions"]
[tool.poetry.dependencies]
python = "^3.12"
jupyter = "*"
graphviz = "*"
numpy = "*"
pillow = "*"
marshmallow = "*"
matplotlib = "*"
scipy = "*"
astor = "*"
sympy = "*"
regex = "*"
requests = "*"
easing-functions = "*"
[tool.poetry.dependencies.advent-of-code-data]
# Commit that provides type hints for the library, use until
# new release is made available.
"git"="https://github.com/wimglenn/advent-of-code-data.git"
"rev"="9a0a72f1eb7178a6f6901e1879ebbad82689b93c"
[tool.poetry.group.dev.dependencies]
ruff = "^0.1.6"
pyright = "^1.1.339"
[tool.ruff]
extend-include = ["*.ipynb"]
extend-exclude = ["jupyter_notebook_config.py", "2015/", "2016/"]
ignore = ["E402", "E501"]
unfixable = ["B"]
line-length = 88
select = ["B", "E", "F", "W", "B9"]
[tool.pyright]
include = ["."]
exclude = ["2015", "2016"]
ignore = ["jupyter_notebook_config.py"]
strict = ["2023"]
# pyright 1.1.339 "standard" mode, manually applied until pylance includes that version
reportFunctionMemberAccess = "error"
reportIncompatibleMethodOverride = "error"
reportIncompatibleVariableOverride = "error"
reportOverlappingOverload = "error"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"