[tool.poetry] name = "aides-spec" version = "0.1.0" description = "" authors = ["Maxim Slipenko "] readme = "README.md" [tool.poetry.scripts] aides-spec = "aides_spec:main" [tool.black] line-length = 79 [tool.isort] profile = "black" line_length = 79 multi_line_output = 3 skip_gitignore = true [tool.bandit] skips = [ "B404", "B602", "B603" ] [tool.poetry.dependencies] python = "^3.12" tree-sitter = "^0.23.2" tree-sitter-bash = "^0.23.3" requests = "^2.32.3" typer = "^0.15.1" gitpython = "^3.1.44" [tool.poetry.group.dev.dependencies] black = "^24.10.0" isort = "^5.13.2" pre-commit = "^4.0.1" flake8 = "^7.1.1" bandit = "^1.8.0" [build-system] requires = ["poetry-core"] build-backend = "poetry.core.masonry.api"