-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (24 loc) · 895 Bytes
/
Copy pathpyproject.toml
File metadata and controls
28 lines (24 loc) · 895 Bytes
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
[build-system]
requires = ["setuptools>=61"]
build-backend = "setuptools.build_meta"
[project]
name = "replace-prefix-lint"
version = "0.1.0"
description = "Flag str.replace(P, '') that is guarded by startswith/endswith(P) and should be removeprefix/removesuffix."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
keywords = ["lint", "linter", "ast", "removeprefix", "removesuffix", "static-analysis"]
classifiers = [
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Quality Assurance",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://github.com/patchwright/replace-prefix-lint"
Issues = "https://github.com/patchwright/replace-prefix-lint/issues"
[project.scripts]
replace-prefix-lint = "replace_prefix_lint:main"
[tool.setuptools]
package-dir = { "" = "src" }
py-modules = ["replace_prefix_lint"]