forked from NorthIsUp/flake8-no-unecessary-fstrings
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (59 loc) · 1.78 KB
/
pyproject.toml
File metadata and controls
74 lines (59 loc) · 1.78 KB
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 = [ "whey",]
build-backend = "whey"
[project]
name = "flake8-unused-fstrings"
version = "2.0.0"
description = "Flake8 plugin to catch f-strings with no fields."
readme = "README.rst"
keywords = []
dynamic = [ "requires-python", "classifiers", "dependencies",]
[project.license]
file = "LICENSE"
[[project.authors]]
name = "adam hitchcock"
email = "adam+python@northisup.com"
[project.urls]
Homepage = "https://github.com/python-formate/flake8-unused-fstrings"
"Issue Tracker" = "https://github.com/python-formate/flake8-unused-fstrings/issues"
"Source Code" = "https://github.com/python-formate/flake8-unused-fstrings"
[project.entry-points."flake8.extension"]
NUF = "flake8_unused_fstrings:Plugin"
[tool.setuptools]
zip-safe = false
include-package-data = true
platforms = [ "Windows", "macOS", "Linux",]
[tool.whey]
base-classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: Flake8",
"Intended Audience :: Developers",
"License :: OSI Approved :: ISC License (ISCL)",
"Natural Language :: English",
"Typing :: Typed",
]
python-versions = [ "3.8", "3.9", "3.10", "3.11", "3.12", "3.13",]
python-implementations = [ "CPython",]
platforms = [ "Windows", "macOS", "Linux",]
license-key = "ISCL"
package = "flake8_unused_fstrings"
[tool.mypy]
python_version = "3.9"
namespace_packages = true
check_untyped_defs = true
warn_unused_ignores = true
no_implicit_optional = true
show_error_codes = true
[tool.dependency-dash."requirements.txt"]
order = 10
[tool.dependency-dash."tests/requirements.txt"]
order = 20
include = false
[tool.snippet-fmt]
directives = [ "code-block",]
[tool.snippet-fmt.languages.python]
reformat = true
[tool.snippet-fmt.languages.TOML]
reformat = true
[tool.snippet-fmt.languages.ini]
[tool.snippet-fmt.languages.json]