-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
56 lines (50 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
56 lines (50 loc) · 1.42 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[project]
name = "chatwoot-sdk"
version = "0.2.0"
description = "Python SDK for Chatwoot API"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
authors = [
{ name = "Chatwoot", email = "engineering@chatwoot.com" },
]
keywords = ["chatwoot", "sdk", "api", "customer-support", "helpdesk", "live-chat"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
dependencies = [
"httpx>=0.27.0",
"pydantic>=2.9.0",
]
[project.urls]
Homepage = "https://github.com/chatwoot/chatwoot-sdk-python"
Repository = "https://github.com/chatwoot/chatwoot-sdk-python"
"Bug Tracker" = "https://github.com/chatwoot/chatwoot-sdk-python/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["chatwoot"]
[dependency-groups]
dev = [
"pytest>=8.3.0",
"pytest-asyncio>=0.24.0",
"ruff>=0.9.0",
]
docs = [
"mkdocs-material>=9.5.0",
"mkdocstrings[python]>=0.27.0",
]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
target-version = "py311"