-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
70 lines (59 loc) · 1.47 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
[tool.poetry]
name = "cookiecutter-docs"
version = "1.1.7"
description = "A CLI to generate documentation for cookiecutter from cookiecutter.json"
authors = ["Thibault Ayanides <thibault.ayanides@skale-5.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.8"
click = "^8.1.3"
pydantic = "^2.0.0"
markdown = "^3.4.3"
pytablewriter = "^0.64.2"
[tool.poetry.scripts]
cookiecutter-docs = "cookiecutter_docs.cookiecutter_docs:cli"
[tool.poetry.group.dev.dependencies]
pytest = "^7.3.1"
black = "^23.3.0"
mypy = "^1.3.0"
pylint = "^2.17.4"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
profile = "black"
force_single_line = false
atomic = false
include_trailing_comma = true
lines_after_imports = 2
lines_between_types = 1
use_parentheses = true
filter_files = true
known_first_party = "poetry"
[tool.black]
ignore_missing_imports = true
plugins = "pydantic.mypy"
[tool.mypy]
ignore_missing_imports = true
[tool.pylint.messages_control]
max-line-length = 120
extension-pkg-whitelist = "pydantic"
disable = [
"line-too-long",
"broad-except",
"no-member",
"logging-fstring-interpolation",
"no-name-in-module",
"too-few-public-methods",
"too-many-instance-attributes",
"duplicate-code",
"fixme",
"too-many-boolean-expressions",
"too-many-locals",
"too-many-statements",
"too-many-return-statements",
"too-many-arguments",
"too-many-branches",
]