python_learning_bot / pyproject.toml
Vladislav.Novikov
first release
e5e9860
raw
history blame contribute delete
719 Bytes
[tool.poetry]
name = "python-learning-bot"
version = "0.1.0"
description = ""
authors = ["Vladislav.Novikov <mb1te.comcis@gmail.com>"]
readme = "README.md"
packages = [{include = "python_learning_bot"}]
[tool.poetry.dependencies]
python = "^3.11"
llama-cpp-python = "^0.1.63"
pydantic = {extras = ["dotenv"], version = "^1.10.9"}
aiogram = {url = "https://github.com/aiogram/aiogram/archive/refs/tags/v3.0.0b7.zip"}
redis = "^4.5.5"
beautifulsoup4 = "^4.12.2"
lxml = "^4.9.2"
requests = "^2.31.0"
sqlalchemy = "^2.0.16"
[tool.poetry.group.dev.dependencies]
mypy = "^1.3.0"
pre-commit = "^3.3.3"
ruff = "^0.0.272"
isort = "^5.12.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"