-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (37 loc) · 1.16 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
[tool.poetry]
name = "bibliography"
version = "0.1.4"
description = "Beautifier of BibTeX files"
authors = ["David Pal <[email protected]>"]
[tool.poetry.scripts]
bibliography = "bibliography:main"
[tool.poetry.dependencies]
python = "^3.8.1"
[tool.poetry.dev-dependencies]
black = "^23.7.0"
coverage = "^7.3.0"
flake8 = "^6.1.0"
flake8-absolute-import = "^1.0.0.1"
isort = {extras = ["colors"], version = "^5.12.0"}
mypy = "^1.5.1"
pydocstyle = {extras = ["toml"], version = "^6.3.0"}
pytest = "^7.4.1"
pylint = "^2.17.5"
pylint-quotes = "^0.2.3"
whitespace-format = "^0.0.4"
[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"