-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
70 lines (63 loc) · 1.65 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
[project]
name = "flake518"
version = "1.6.0"
description = "A small wrapper around flake8 to support PEP518 pyproject.toml as configuration file."
authors = [
{name = "Carsten Igel", email = "[email protected]"},
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Flake8",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
"Typing :: Typed",
]
dependencies = [
"tomli>=0.10.2; python_version<'3.11'",
"flake8>=3.0.0",
]
requires-python = ">=3.9, <4"
license = {file="LICENSE"}
keywords = []
readme = "README.md"
[project.scripts]
flake518 = "flake518.__main__:main"
[project.urls]
homepage = "https://github.com/carstencodes/flake518"
[project.optional-dependencies]
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[tool]
[tool.pdm]
plugins = ["pdm-bump"]
[tool.pdm.dev-dependencies]
test = [
"pytest>=7.1.3",
"pytest-cov>=3.0.0",
]
edit = [
"mypy>=0.971",
"black>=22.8.0",
]
lint = [
"pylint>=2.15.2",
"pydocstyle>=6.1.1",
]
[tool.black]
line-length=79
target-version=['py38']
[tool.flake8]
statistics=true
show-source=true
max-line-length=79
doctests=true
exclude=[".git", "__pypackages__", ".vscode", ".mypy_cache"]