changelog_generator/pyproject.toml
2024-09-20 16:00:11 +02:00

29 lines
690 B
TOML

[tool.poetry]
name = "changelog2"
version = "0.0.1"
description = "An AI-Agent based tool for creating changelogs"
authors = ["Patryk Hegenberg <hegenberg@tixeltec.com>"]
readme = "README.md"
[tool.poetry.scripts]
changelog2 = "changelog2.main:main"
[tool.poetry.dependencies]
python = ">=3.11,<=3.13"
langchain = "^0.2.16"
llama-index = "^0.11.8"
crewai = { extras = ["tools"], version = "^0.55.2" }
gitpython = "^3.1.43"
langchain-ollama = "^0.1.3"
nltk = "^3.9.1"
[tool.poetry.group.dev.dependencies]
black = "^24.8.0"
flake8 = "^7.1.1"
pytest = "^8.3.2"
pyinstaller = "^6.10.0"
staticx = "^0.14.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"