-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (45 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
[tool.poetry]
name = "whitespace-format"
version = "0.0.7"
description = "Linter and formatter for source code files and text files"
license = "MIT"
authors = ["David Pal <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/DavidPal/whitespace-format"
repository = "https://github.com/DavidPal/whitespace-format"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
[tool.poetry.scripts]
whitespace-format = "whitespace_format:main"
[tool.poetry.dependencies]
python = "^3.8.0"
[tool.poetry.dev-dependencies]
black = "^23.12.1"
coverage = "^7.2.4"
flake8 = "^5.0.4"
flake8-absolute-import = "^1.0.0.2"
isort = {extras = ["colors"], version = "^5.13.2"}
mypy = "^1.13.0"
pydocstyle = {extras = ["toml"], version = "^6.3.0"}
pytest = "^8.3.4"
pylint = "^2.17.7"
pylint-quotes = "^0.2.3"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
line-length = 100
skip-string-normalization = true
[tool.isort]
profile = "black"
force_single_line = true
line_length = 100
multi_line_output = 3
[tool.pydocstyle]
# List of rules (error codes) that should be enforced by pydocstyle.
# Complete list of codes can be found at: http://www.pydocstyle.org/en/stable/error_codes.html
# Keep the list below in lexicograhic order!
select = "D101,D102,D103,D105,D200,D201,D204,D205,D206,D207,D208,D209,D210,D211,D212,D300,D400,D403,D405,D411,D416,D419"