forked from wemake-services/wemake-python-styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
116 lines (95 loc) · 2.38 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
[build-system]
requires = ["poetry>=1.0"]
build-backend = "poetry.masonry.api"
[tool.nitpick]
style = "styles/nitpick-style-wemake.toml"
[tool.poetry]
name = "wemake-python-styleguide"
version = "0.13.3"
description = "The strictest and most opinionated python linter ever"
license = "MIT"
authors = [
"Nikita Sobolev <mail@sobolevn.me>"
]
readme = "README.md"
repository = "https://github.com/wemake-services/wemake-python-styleguide"
homepage = "https://wemake-python-stylegui.de"
keywords = [
"flake8",
"flake8-plugin",
"flake8-formatter",
"linter",
"wemake.services",
"styleguide",
"code quality",
"pycqa"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: Flake8",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.plugins."flake8.extension"]
WPS = "wemake_python_styleguide.checker:Checker"
[tool.poetry.plugins."flake8.report"]
wemake = "wemake_python_styleguide.formatter:WemakeFormatter"
[tool.poetry.dependencies]
python = "3.6 || 3.7"
flake8 = "^3.7"
attrs = "*"
typing_extensions = "^3.6"
astor = "^0.8"
pygments = "^2.4"
cognitive_complexity = "^0.0.4"
flake8-builtins = "^1.4.2"
flake8-commas = "^2.0"
flake8-quotes = "^2.0.1"
flake8-comprehensions = "^3.1.0"
flake8-docstrings = "^1.3.1"
flake8-string-format = "^0.2"
flake8-coding = "^1.3"
flake8-bugbear = "^19.3"
flake8-pep3101 = "^1.2"
flake8-debugger = "^3.1"
flake8-isort = "^2.6"
flake8-eradicate = "^0.2"
flake8-bandit = "^2.1"
flake8-logging-format = "^0.6"
flake8-broken-line = "^0.1"
flake8-print = "^3.1.4"
flake8-annotations-complexity = "^0.0.2"
flake8-rst-docstrings = "^0.0.12"
flake8-executable = "^2.0"
pep8-naming = "^0.9.1"
radon = '^4.0'
darglint = "^1.1"
[tool.poetry.dev-dependencies]
nitpick = "^0.21.3"
flake8-pytest-style = "^0.1.3"
flake8-pytest = "^1.3"
pytest-cov = "^2.8"
pytest-randomly = "^3.1"
pytest = "^5.3"
snapshottest = "^0.5.1"
hypothesis = "^4.55.2"
hypothesmith = "^0.0.5"
mypy = "^0.750"
docutils = "^0.13"
sphinx = "^2.2"
sphinx-autodoc-typehints = "<1.11"
sphinxcontrib-mermaid = "^0.3"
doc8 = "^0.8"
m2r = "^0.2"
added-value = "^0.14"
tomlkit = "^0.5"
safety = "^1.8"
autopep8 = "^1.4"
import-linter = "^1.0"
ipdb = "^0.12.3"
ipython = "^7.10"
astboom = "^0.2.1"
tokelor = "^0.1.4"