Update pyproject authors, maintainers, supported Python version labels (#7713)

This commit is contained in:
Zanie Blue 2023-09-29 12:04:10 -05:00 committed by GitHub
parent dc51d03866
commit 974262ad2c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 4 deletions

View File

@ -27,7 +27,7 @@ An extremely fast Python linter, written in Rust.
- ⚡️ 10-100x faster than existing linters - ⚡️ 10-100x faster than existing linters
- 🐍 Installable via `pip` - 🐍 Installable via `pip`
- 🛠️ `pyproject.toml` support - 🛠️ `pyproject.toml` support
- 🤝 Python 3.11 compatibility - 🤝 Python 3.12 compatibility
- 📦 Built-in caching, to avoid re-analyzing unchanged files - 📦 Built-in caching, to avoid re-analyzing unchanged files
- 🔧 Fix support, for automatic error correction (e.g., automatically remove unused imports) - 🔧 Fix support, for automatic error correction (e.g., automatically remove unused imports)
- 📏 Over [700 built-in rules](https://docs.astral.sh/ruff/rules/) - 📏 Over [700 built-in rules](https://docs.astral.sh/ruff/rules/)

View File

@ -1,14 +1,12 @@
[build-system] [build-system]
requires = ["maturin>=1.0,<2.0"] requires = ["maturin>=1.0,<2.0"]
build-backend = "maturin" build-backend = "maturin"
[project] [project]
name = "ruff" name = "ruff"
version = "0.0.291" version = "0.0.291"
description = "An extremely fast Python linter, written in Rust." description = "An extremely fast Python linter, written in Rust."
authors = [{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" }] authors = [{ name = "Astral Software Inc.", email = "hey@astral.sh" }]
maintainers = [{ name = "Charlie Marsh", email = "charlie.r.marsh@gmail.com" }]
readme = "README.md" readme = "README.md"
requires-python = ">=3.7" requires-python = ">=3.7"
license = { file = "LICENSE" } license = { file = "LICENSE" }
@ -32,6 +30,7 @@ classifiers = [
"Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3 :: Only",
"Programming Language :: Rust", "Programming Language :: Rust",
"Topic :: Software Development :: Libraries :: Python Modules", "Topic :: Software Development :: Libraries :: Python Modules",