greek_lang/pyproject.toml
2025-08-10 12:29:39 +03:00

41 lines
838 B
TOML

[project]
name = "greek-lang"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
authors = [
{ name = "ruslangilfanov", email = "rgilfanov@walletteam.org" }
]
requires-python = ">=3.13"
dependencies = [
"aiogtts>=1.1.1",
"alembic>=1.16.1",
"asyncpg>=0.30.0",
"click>=8.2.1",
"dependency-injector>=4.47.1",
"greenlet>=3.2.3",
"openai>=1.84.0",
"pendulum>=3.1.0",
"psycopg2-binary>=2.9.10",
"pydantic>=2.11.5",
"pydantic-settings>=2.9.1",
"sqlalchemy>=2.0.41",
]
[project.scripts]
greek-lang = "greek_lang:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[dependency-groups]
dev = [
"bandit>=1.8.3",
"go-task-bin>=3.43.3",
"mypy>=1.16.0",
"pre-commit>=4.2.0",
"pyupgrade>=3.20.0",
"ruff>=0.11.13",
]