mirror of https://github.com/astral-sh/ruff
Revert erroneous pyproject.toml changes
This commit is contained in:
parent
b7e2a4b9a9
commit
4ac74ed0ad
|
|
@ -1,12 +1,6 @@
|
||||||
[tool.poetry]
|
[project]
|
||||||
name = "autobot-ml"
|
name = "ruff"
|
||||||
version = "0.0.1"
|
keywords = ["automation", "flake8", "pycodestyle", "pyflakes", "pylint", "clippy"]
|
||||||
description = "An automated code refactoring tool powered by GPT-3."
|
|
||||||
authors = ["Charlie Marsh <charlie.r.marsh@gmail.com>"]
|
|
||||||
license = "MIT"
|
|
||||||
readme = "README.md"
|
|
||||||
repository = "https://github.com/charliermarsh/autobot"
|
|
||||||
keywords = ["automation", "refactor", "GPT-3"]
|
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Development Status :: 3 - Alpha",
|
"Development Status :: 3 - Alpha",
|
||||||
"Environment :: Console",
|
"Environment :: Console",
|
||||||
|
|
@ -23,35 +17,19 @@ classifiers = [
|
||||||
"Topic :: Software Development :: Libraries :: Python Modules",
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
||||||
"Topic :: Software Development :: Quality Assurance",
|
"Topic :: Software Development :: Quality Assurance",
|
||||||
]
|
]
|
||||||
packages = [{ include = "autobot" }]
|
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]
|
||||||
[tool.poetry.dependencies]
|
repository = "https://github.com/charliermarsh/ruff"
|
||||||
python = ">=3.7,<3.11"
|
|
||||||
openai = "^0.23.0"
|
|
||||||
python-dotenv = "^0.21.0"
|
|
||||||
colorama = "^0.4.5"
|
|
||||||
patch = "^1.16"
|
|
||||||
rich = "^12.5.1"
|
|
||||||
|
|
||||||
[tool.poetry.dev-dependencies]
|
|
||||||
mypy = "^0.971"
|
|
||||||
black = "^22.8.0"
|
|
||||||
isort = "^5.10.1"
|
|
||||||
|
|
||||||
[tool.poetry.scripts]
|
|
||||||
autobot = "autobot.main:main"
|
|
||||||
|
|
||||||
[build-system]
|
[build-system]
|
||||||
requires = ["poetry-core>=1.0.0"]
|
requires = ["maturin>=0.13,<0.14"]
|
||||||
build-backend = "poetry.core.masonry.api"
|
build-backend = "maturin"
|
||||||
|
|
||||||
[tool.black]
|
[tool.maturin]
|
||||||
line-length = 88
|
bindings = "bin"
|
||||||
target-version = ["py310"]
|
sdist-include = ["Cargo.lock"]
|
||||||
extend-exclude = "schematics"
|
strip = true
|
||||||
preview = true
|
|
||||||
|
|
||||||
[tool.isort]
|
|
||||||
profile = "black"
|
|
||||||
extend_skip = "schematics"
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue