diff --git a/README.md b/README.md index 07fbf8c0ac4ba..e4dc9a06129d8 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ An extremely fast Python linter, written in Rust. - ⚡️ 10-100x faster than existing linters - 🐍 Installable via `pip` - 🛠️ `pyproject.toml` support -- 🤝 Python 3.11 compatibility +- 🤝 Python 3.12 compatibility - 📦 Built-in caching, to avoid re-analyzing unchanged files - 🔧 Fix support, for automatic error correction (e.g., automatically remove unused imports) - 📏 Over [700 built-in rules](https://docs.astral.sh/ruff/rules/) diff --git a/pyproject.toml b/pyproject.toml index 37c64f34ae4ff..38fa4b39ee224 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,12 @@ [build-system] requires = ["maturin>=1.0,<2.0"] - build-backend = "maturin" [project] name = "ruff" version = "0.0.291" 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" }] +authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }] readme = "README.md" requires-python = ">=3.7" license = { file = "LICENSE" } @@ -32,6 +30,7 @@ classifiers = [ "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", "Programming Language :: Rust", "Topic :: Software Development :: Libraries :: Python Modules",