29 lines
524 B
TOML
29 lines
524 B
TOML
|
[tool.poetry]
|
||
|
name = "aides-spec"
|
||
|
version = "0.1.0"
|
||
|
description = ""
|
||
|
authors = ["Maxim Slipenko <maks1ms@alt-gnome.ru>"]
|
||
|
readme = "README.md"
|
||
|
|
||
|
[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"
|
||
|
|
||
|
[tool.poetry.group.dev.dependencies]
|
||
|
black = "^24.10.0"
|
||
|
isort = "^5.13.2"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["poetry-core"]
|
||
|
build-backend = "poetry.core.masonry.api"
|