aides-spec/pyproject.toml

44 lines
737 B
TOML
Raw Normal View History

2024-12-01 18:49:14 +00:00
[tool.poetry]
2025-01-02 21:26:20 +00:00
name = "aides-spec"
2024-12-01 18:49:14 +00:00
version = "0.1.0"
description = ""
authors = ["Maxim Slipenko <maks1ms@alt-gnome.ru>"]
readme = "README.md"
2024-12-01 19:24:12 +00:00
[tool.poetry.scripts]
2025-01-02 21:26:20 +00:00
aides-spec = "aides_spec:main"
2024-12-01 19:24:12 +00:00
2024-12-01 18:49:14 +00:00
[tool.black]
line-length = 79
[tool.isort]
profile = "black"
line_length = 79
multi_line_output = 3
skip_gitignore = true
2025-01-02 21:26:20 +00:00
[tool.bandit]
skips = [
"B404",
"B602",
"B603"
]
2024-12-01 18:49:14 +00:00
[tool.poetry.dependencies]
python = "^3.12"
tree-sitter = "^0.23.2"
tree-sitter-bash = "^0.23.3"
2024-12-01 19:24:12 +00:00
requests = "^2.32.3"
2025-01-02 21:26:20 +00:00
typer = "^0.15.1"
2024-12-01 18:49:14 +00:00
[tool.poetry.group.dev.dependencies]
black = "^24.10.0"
isort = "^5.13.2"
2025-01-02 21:26:20 +00:00
pre-commit = "^4.0.1"
flake8 = "^7.1.1"
bandit = "^1.8.0"
2024-12-01 18:49:14 +00:00
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"