-
Notifications
You must be signed in to change notification settings - Fork 21
/
pyproject.toml
74 lines (63 loc) · 1.49 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
[build-system]
requires = ["poetry-core>=1.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "flake8-print"
version = "5.0.0"
description = "print statement checker plugin for flake8"
readme = "README.md"
license = "MIT"
authors = [
"Joseph Kahn <josephbkahn@gmail.com>"
]
repository = "https://github.com/jbkahn/flake8-print"
homepage = "https://github.com/jbkahn/flake8-print"
keywords = [
"flake8",
"plugin",
"linting",
"print",
"code quality"
]
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Framework :: Flake8',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Software Development :: Quality Assurance',
]
include = ["pyproject.toml", "flake8_print.py", "LICENCE"]
[tool.poetry.plugins."flake8.extension"]
T20 = "flake8_print:PrintChecker"
[tool.poetry.dependencies]
python = ">=3.7"
"flake8" = ">=3.0"
pycodestyle = "*"
[tool.poetry.dev-dependencies]
black = { version = "^22.3.0" }
pytest = "*"
[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38', 'py39']
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| venv
| _build
| buck-out
| build
| dist
)/
'''
skip-numeric-underscore-normalization = true