Add project metadata

This commit is contained in:
Charlie Marsh
2022-08-27 20:40:40 -04:00
parent c52fdfa748
commit 2f266e5e20
4 changed files with 28 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -1700,7 +1700,7 @@ dependencies = [
[[package]]
name = "ruff"
version = "0.0.13"
version = "0.0.14"
dependencies = [
"anyhow",
"bincode",

View File

@@ -1,6 +1,6 @@
[package]
name = "ruff"
version = "0.0.13"
version = "0.0.14"
edition = "2021"
[lib]

View File

@@ -51,8 +51,8 @@ cargo run resources/test/src
`ruff` is released for Python using [`maturin`](https://github.com/PyO3/maturin):
```shell
maturin publish --skip-existing --target x86_64-apple-darwin
maturin publish --skip-existing --target aarch64-apple-darwin
maturin publish --skip-existing --target x86_64-apple-darwin && \
maturin publish --skip-existing --target aarch64-apple-darwin
```
## Benchmarking

View File

@@ -1,3 +1,27 @@
[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 = "The fastest Python linter, written in Rust."
[build-system]
requires = ["maturin>=0.13,<0.14"]
build-backend = "maturin"