forked from PyCQA/flake8-bugbear
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
77 lines (69 loc) · 2 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
[build-system]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "flake8-bugbear"
authors = [{name = "Łukasz Langa", email = "[email protected]"}]
license = {text = "MIT"}
description = "A plugin for flake8 finding likely bugs and design problems in your program. Contains warnings that don't belong in pyflakes and pycodestyle."
keywords = [
"flake8",
"bugbear",
"bugs",
"pyflakes",
"pylint",
"linter",
"qa",
]
readme = "README.rst"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Flake8",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Quality Assurance",
]
requires-python = ">=3.8.1"
dependencies = ["flake8>=6.0.0", "attrs>=19.2.0"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/PyCQA/flake8-bugbear"
"Change Log" = "https://github.com/PyCQA/flake8-bugbear#change-log"
[project.entry-points]
"flake8.extension" = {B = "bugbear:BugBearChecker"}
[project.optional-dependencies]
dev = [
"tox",
"coverage",
"hypothesis",
"hypothesmith>=0.2",
"pre-commit",
"pytest",
]
[tool.setuptools]
py-modules = ["bugbear"]
zip-safe = false
# test-suite = "tests.test_bugbear" # Deprecated since setuptools v41.5.0
license-files = ["LICENSE"]
include-package-data = false
[tool.setuptools.dynamic]
version = {attr = "bugbear.__version__"}
[tool.isort]
profile = "black"
[tool.black]
force-exclude = '''
(
^/tests\/b.*
)
'''