-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
60 lines (51 loc) · 1.44 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
[tool.poetry]
name = "ietf-reviewtool"
version = "0.4.1"
description = "Review tool for IETF documents"
authors = ["Lars Eggert <[email protected]>"]
readme = "README.md"
homepage = "https://github.com/larseggert/ietf-reviewtool"
repository = "https://github.com/larseggert/ietf-reviewtool"
license = "GPL-2.0-only"
[tool.poetry.dependencies]
python = ">=3.11, <4"
requests-cache = ">=1.0.0"
appdirs = ">=1.4.4"
click = ">=7.1.2"
language-tool-python = ">=2.5.3"
PyYAML = ">=5.4.1"
charset-normalizer = ">=2.0.6"
urlextract = ">=1.5.0"
num2words = ">=0.5.10"
json-five = ">=0.8.0"
urllib3 = ">=1.26.15"
requests = ">=2.28.2"
setuptools = ">=69.0.2,<76.0.0"
[poetry.group.dev.dependencies]
mypy = ">=0.942"
[tool.poetry.requires-plugins]
poetry-plugin-export = ">=1.8"
[tool.poetry.scripts]
irt = "ietf_reviewtool.ietf_reviewtool:cli"
ietf-reviewtool = "ietf_reviewtool.ietf_reviewtool:cli"
[tool.poetry.group.types.dependencies]
types-requests = "^2.31.0.0"
types-appdirs = "^1.4.3.5"
types-urllib3 = "^1.26.25.13"
types-click = "^7.1.8"
types-pyyaml = "^6.0.12.10"
[tool.pylint.messages_control]
# TODO: these are very high and should be gradually reduced during refactoring
max-args = 15
max-bool-expr = 10
max-branches = 80
max-locals = 50
max-module-lines = 1500
max-nested-blocks = 8
max-statements = 200
min-public-methods=0
[tool.pylint.format]
max-line-length = "88"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"