mirror of https://github.com/astral-sh/ruff
Modify pyproject.toml to meet schema compliance
This commit is contained in:
parent
74903f23d6
commit
95f139583a
|
|
@ -1,5 +1,19 @@
|
||||||
|
[build-system]
|
||||||
|
requires = ["maturin>=0.14,<0.15"]
|
||||||
|
build-backend = "maturin"
|
||||||
|
|
||||||
[project]
|
[project]
|
||||||
name = "ruff"
|
name = "ruff"
|
||||||
|
version = "0.0.203"
|
||||||
|
description = "An extremely fast Python linter, written in Rust."
|
||||||
|
authors = [
|
||||||
|
{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" },
|
||||||
|
]
|
||||||
|
maintainers = [
|
||||||
|
{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" },
|
||||||
|
]
|
||||||
|
requires-python = ">=3.7"
|
||||||
|
license = { file = "LICENSE" }
|
||||||
keywords = ["automation", "flake8", "pycodestyle", "pyflakes", "pylint", "clippy"]
|
keywords = ["automation", "flake8", "pycodestyle", "pyflakes", "pylint", "clippy"]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 3 - Alpha",
|
"Development Status :: 3 - Alpha",
|
||||||
|
|
@ -17,24 +31,14 @@ classifiers = [
|
||||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
"Topic :: Software Development :: Quality Assurance",
|
"Topic :: Software Development :: Quality Assurance",
|
||||||
]
|
]
|
||||||
author = "Charlie Marsh"
|
urls = { repository = "https://github.com/charliermarsh/ruff-lsp" }
|
||||||
author_email = "charlie.r.marsh@gmail.com"
|
|
||||||
description = "An extremely fast Python linter, written in Rust."
|
|
||||||
requires-python = ">=3.7"
|
|
||||||
|
|
||||||
[project.urls]
|
|
||||||
repository = "https://github.com/charliermarsh/ruff"
|
|
||||||
|
|
||||||
[build-system]
|
|
||||||
requires = ["maturin>=0.14,<0.15"]
|
|
||||||
build-backend = "maturin"
|
|
||||||
|
|
||||||
[tool.maturin]
|
[tool.maturin]
|
||||||
bindings = "bin"
|
bindings = "bin"
|
||||||
strip = true
|
strip = true
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
update-check = true
|
line-length = 88
|
||||||
|
|
||||||
[tool.ruff.isort]
|
[tool.ruff.isort]
|
||||||
force-wrap-aliases = true
|
force-wrap-aliases = true
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue