mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-03 10:22:24 +00:00
30 lines
1 KiB
TOML
30 lines
1 KiB
TOML
[project]
|
|
name = "ruff"
|
|
keywords = ["automation", "flake8", "pycodestyle", "pyflakes", "pylint", "clippy"]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Environment :: Console",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python",
|
|
"Programming Language :: Python :: 3.6",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Topic :: Software Development :: Quality Assurance",
|
|
]
|
|
author = "Charlie Marsh"
|
|
author_email = "charlie.r.marsh@gmail.com"
|
|
url = "https://github.com/charliermarsh/ruff"
|
|
description = "An extremely fast Python linter, written in Rust."
|
|
|
|
[build-system]
|
|
requires = ["maturin>=0.13,<0.14"]
|
|
build-backend = "maturin"
|
|
|
|
[tool.maturin]
|
|
bindings = "bin"
|