mirror of
https://github.com/astral-sh/ruff.git
synced 2025-07-07 21:25:08 +00:00
26 lines
445 B
TOML
26 lines
445 B
TOML
[project]
|
|
name = "scripts"
|
|
version = "0.12.2"
|
|
description = ""
|
|
authors = ["Charles Marsh <charlie.r.marsh@gmail.com>"]
|
|
|
|
|
|
python = ">=3.10,<3.12"
|
|
|
|
dependencies = ["autoflake", "autopep8", "black", "flake8", "isort", "pycodestyle", "pyflakes", "pylint", "yapf"]
|
|
|
|
[dependency-groups]
|
|
formatter = [
|
|
"black",
|
|
"yapf",
|
|
"autopep8",
|
|
]
|
|
linter = [
|
|
"autoflake",
|
|
"flake8",
|
|
"pycodestyle",
|
|
"pyflakes",
|
|
"pylint",
|
|
"isort",
|
|
]
|
|
|