31 lines
588 B
TOML
31 lines
588 B
TOML
[project]
|
|
name = "solaris-guest-bot"
|
|
version = "0.1.0"
|
|
description = "A Gemini-powered phi-creature for Telegram"
|
|
authors = [
|
|
{ name = "h", email = "h@kotikot.com" }
|
|
]
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"aiogram>=3.20.0.post0",
|
|
"beanie>=2.0.0",
|
|
"dishka>=1.6.0",
|
|
"pydantic-ai>=0.4.4",
|
|
"pydantic-settings>=2.10.1",
|
|
"pydub>=0.25.1",
|
|
"rich>=14.0.0",
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src"]
|
|
|
|
[tool.hatch.build.sources]
|
|
"src" = ""
|
|
|
|
[tool.isort]
|
|
profile = "black"
|