-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
111 lines (98 loc) · 2.6 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]
[tool.bandit]
exclude_dirs = ["2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022", "dev", "tests"]
[tool.black]
line-length = 88
[tool.isort]
atomic = true
balanced_wrapping = true
combine_star = true
include_trailing_comma = true
known_first_party = "aoc"
known_logging = "logging"
known_third_party = []
line_length = 88
lines_after_imports = 2
lines_between_types = 1
multi_line_output = 3
sections = ["FUTURE", "STDLIB", "THIRDPARTY", "FIRSTPARTY", "LOCALFOLDER", "LOGGING"]
use_parentheses = true
[tool.mypy]
check_untyped_defs = true
ignore_missing_imports = true
pretty = true
show_column_numbers = true
show_error_codes = true
show_error_context = true
strict_optional = true
warn_redundant_casts = true
warn_unused_configs = true
warn_unused_ignores = true
[tool.poetry]
authors = ["NimVek <[email protected]>"]
classifiers = [
"Topic :: Education",
"Intended Audience :: Education",
"Environment :: Console",
"Operating System :: OS Independent",
"Natural Language :: English",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Development Status :: 3 - Alpha"
]
description = "Advent of Code Helper."
license = "GPL-3.0-or-later"
name = "aoc"
readme = "README.md"
repository = "https://github.com/NimVek/advent-of-code"
version = "22.11.0"
[tool.poetry.dependencies]
GitPython = "^3.1.43"
beautifulsoup4 = "^4.12.3"
dateparser = "^1.2.0"
furl = "^2.1.3"
incremental = "^24.7.2"
parse = "^1.20.2"
platformdirs = "^4.3.6"
pydantic = "^2.10.2"
pyhtml2md = "^1.6.0"
python = "^3.11"
requests = "^2.32.3"
rich = "^13.9.4"
termcolor = "^2.5.0"
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
ipython = "^8.30.0"
mypy = "^1.13.0"
pre-commit = "3.8.0"
pytest = "^7.4.4"
pytest-annotate = "^1.0.5"
pytest-cov = "^6.0.0"
pytest-randomly = "^3.16.0"
pytest-richer = "^0.1.1"
pytest-skip-slow = "^0.0.5"
pytest-timeout = "^2.3.1"
pytest-xdist = "^3.6.1"
toml = "^0.10.2"
toml-sort = "^0.24.2"
types-toml = "^0.10.8.20240310"
[tool.poetry.group.extras]
optional = true
[tool.poetry.group.extras.dependencies]
browser-cookie3 = "^0.19.1"
[tool.poetry.scripts]
aoc = 'aoc.main:main'
[tool.pytest.ini_options]
log_cli = true
log_cli_level = "DEBUG"
norecursedirs = [".*", "template"]
python_files = ["test_*.py"]
timeout = 60
[tool.ruff]
extend-exclude = ["2015", "2016", "2017", "2018", "2019", "2020", "2021", "2022"]
[tool.tomlsort]
overrides."tool.*".inline_arrays = false