-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 969 Bytes
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 969 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "chatbotkit"
version = "0.1.0"
description = "Async Python SDK for ChatBotKit"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [{ name = "CBK.AI", email = "support@chatbotkit.com" }]
keywords = ["chatbotkit", "ai", "chatbot", "agent", "llm", "conversational-ai"]
urls = { Homepage = "https://chatbotkit.com", Documentation = "https://chatbotkit.com/docs", Source = "https://github.com/chatbotkit" }
dependencies = [
"httpx>=0.27",
"python-dateutil>=2.8",
]
[project.optional-dependencies]
agent = [
"pydantic>=2.7",
]
dev = [
"build>=1.2",
"pytest>=8",
"pytest-asyncio>=0.23",
"pydantic>=2.7",
"python-dotenv>=1.0",
"tomli>=2; python_version < '3.11'",
"twine>=5",
]
examples = [
"python-dotenv>=1.0",
]
[tool.hatch.build.targets.wheel]
packages = ["chatbotkit"]
[tool.pytest.ini_options]
asyncio_mode = "auto"