From 95f139583a42bc8bb22fed64fe659812120f81a1 Mon Sep 17 00:00:00 2001 From: Charlie Marsh Date: Fri, 30 Dec 2022 15:51:35 -0500 Subject: [PATCH] Modify pyproject.toml to meet schema compliance --- pyproject.toml | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index fa9374d48f..f7dea8dd37 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,5 +1,19 @@ +[build-system] +requires = ["maturin>=0.14,<0.15"] +build-backend = "maturin" + [project] 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"] classifiers = [ "Development Status :: 3 - Alpha", @@ -17,24 +31,14 @@ classifiers = [ "Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Quality Assurance", ] -author = "Charlie Marsh" -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" +urls = { repository = "https://github.com/charliermarsh/ruff-lsp" } [tool.maturin] bindings = "bin" strip = true [tool.ruff] -update-check = true +line-length = 88 [tool.ruff.isort] force-wrap-aliases = true