-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
59 lines (45 loc) · 1.21 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 = "flake8-eradicate"
version = "1.5.0"
description = "Flake8 plugin to find commented out code"
license = "MIT"
authors = [
"Nikita Sobolev <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/wemake-services/flake8-eradicate"
homepage = "https://github.com/wemake-services/flake8-eradicate"
keywords = [
"flake8",
"plugin",
"linting",
"wemake.services",
"code quality"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Flake8",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
[tool.poetry.urls]
"Funding" = "https://opencollective.com/wemake-python-styleguide"
[tool.poetry.dependencies]
python = "^3.8"
flake8 = ">5"
eradicate = "^2.0"
attrs = "*"
[tool.poetry.group.test.dependencies]
pytest = ">=7.3,<9.0"
pytest-cov = ">=4,<6"
pytest-randomly = "^3.12"
mypy = "^1.3"
safety = ">=2.3,<4.0"
[tool.poetry.plugins."flake8.extension"]
E8 = "flake8_eradicate:Checker"
[build-system]
requires = ["poetry-core>=1.6.0"]
build-backend = "poetry.core.masonry.api"