33 lines
611 B
TOML
33 lines
611 B
TOML
[tool.poetry]
|
|
name = "alr-spec"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = ["Maxim Slipenko <maks1ms@alt-gnome.ru>"]
|
|
readme = "README.md"
|
|
|
|
[tool.poetry.scripts]
|
|
alr-spec = "alr_spec:main"
|
|
|
|
[tool.black]
|
|
line-length = 79
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
line_length = 79
|
|
multi_line_output = 3
|
|
skip_gitignore = true
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.12"
|
|
tree-sitter = "^0.23.2"
|
|
tree-sitter-bash = "^0.23.3"
|
|
requests = "^2.32.3"
|
|
typer = "^0.14.0"
|
|
|
|
[tool.poetry.group.dev.dependencies]
|
|
black = "^24.10.0"
|
|
isort = "^5.13.2"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core"]
|
|
build-backend = "poetry.core.masonry.api"
|