This commit is contained in:
Alexander Kalinovsky
2025-08-19 17:57:45 +03:00
parent 84866dcfb4
commit 54414e530a
6 changed files with 189 additions and 0 deletions

36
pyproject.toml Normal file
View File

@@ -0,0 +1,36 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "quickbot-faststream"
version = "0.1.0"
description = "Enables telegram updates handling in faststream workers"
readme = "README.md"
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
]
authors = [
{ name = "Alexander Kalinovsky", email = "ak@botforge.biz" },
]
license = { file = "LICENSE" }
dependencies = [
"quickbot>=0.1.1",
"faststream[rabbit]>=0.5",
]
[project.optional-dependencies]
dev = [
"build>=1.2.1",
"twine>=5.0.0",
"pytest>=8.0.0",
"ruff>=0.5.0",
]
[tool.setuptools.packages.find]
where = ["src"]