-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
55 lines (47 loc) · 1.12 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
[tool.poetry]
name = "adventofcode"
version = "0.1.0"
description = ""
authors = ["Roman Frolov <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
anytree = "^2.8.0"
[tool.poetry.group.dev.dependencies]
flake8 = "<6.0.0"
flake8-bugbear = "^22.10.27"
flake8-builtins = "^2.0.1"
flake8-commas = "^2.1.0"
flake8-comprehensions = "^3.10.1"
flake8-isort = "^5.0.3"
flake8-literal = "^1.3.0"
flake8-multiline-containers = "^0.0.19"
flake8-mutable = "^1.2.0"
flake8-no-implicit-concat = "^0.3.4"
flake8-print = "^5.0.0"
flake8-pyproject = "^1.2.2"
flake8-quotes = "^3.3.1"
flake8-simplify = "^0.19.3"
flake8-string-format = "^0.3.0"
isort = "^5.10.1"
pep8-naming = "^0.13.2"
pre-commit = "^2.20.0"
autopep8 = "^2.0.0"
ipython = "^8.7.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.flake8]
exclude = ['venv']
statistics = true
max-line-length = 120
inline-quotes = 'single'
multiline-quotes = 'single'
docstring-quotes = 'double'
[tool.isort]
skip = 'venv'
indent = 4
line_length = 80
multi_line_output = 5
combine_as_imports = true
include_trailing_comma = true