This commit is contained in:
Alexander Kalinovsky
2025-08-19 17:57:37 +03:00
parent 7e87066253
commit 6792ff06d6
5 changed files with 47 additions and 171 deletions

View File

@@ -1,9 +1,13 @@
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "quickbot-agent"
version = "0.1.0"
description = "Adds AI answers and API orchestration to your bot"
readme = "README.md"
requires-python = ">=3.12"
requires-python = ">=3.13"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
@@ -14,5 +18,18 @@ authors = [
]
license = { file = "LICENSE" }
dependencies = [
"quickbot>=0.1.1",
"openai>=1.97.1",
"pydantic>=2.11.7",
]
[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"]