[dev] basic project structure

This commit is contained in:
h
2025-03-28 16:48:44 +02:00
commit 1a5fd5977e
29 changed files with 930 additions and 0 deletions

25
pyproject.toml Normal file
View File

@@ -0,0 +1,25 @@
[project]
name = "anymusicbot2"
version = "0.1.0"
requires-python = ">=3.13"
dependencies = [
"aiogram>=3.18.0",
"beanie>=1.29.0",
"dishka>=1.4.2",
"faststream[nats]>=0.5.35",
"pydantic-settings>=2.8.1",
"rich>=13.9.4",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src"]
[tool.hatch.build.sources]
"src" = ""
[tool.isort]
profile = "black"