-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
52 lines (46 loc) · 1.04 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
[tool.poetry]
name = "advent_of_code"
version = "0.1.0"
description = "Advent of Code solutions"
repository = "https://github.com/mcuelenaere/advent_of_code"
authors = ["Maurus Cuelenaere <mcuelenaere@gmail.com>"]
build = "build.py"
[tool.poetry.dependencies]
click = "^8.1"
python = "^3.7"
[tool.poetry.dev-dependencies]
Cython = "^0.29.32"
pre-commit = "^2.20.0"
requests = "^2.28.1"
html2markdown = "^0.1.7"
pytest = "^7.2.0"
setuptools-rust = "^1.5.2"
[tool.poetry.scripts]
solve_puzzle = "advent_of_code.solve_puzzle:main"
download_puzzle = "advent_of_code.download_puzzle:main"
[tool.isort]
profile = "black"
atomic = true
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
src_paths = ["advent_of_code"]
filter_files = true
known_first_party = "advent_of_code"
[tool.black]
line-length = 120
include = '\.pyx?$'
exclude = '''
/(
\.eggs
| \.git
| \.github
| \.mypy_cache
| build
| puzzle\.txt$
)/
'''
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"