-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (62 loc) · 1.56 KB
/
pyproject.toml
File metadata and controls
71 lines (62 loc) · 1.56 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[project]
name = "kiket-sdk"
version = "0.1.0"
description = "Python SDK for building Kiket extensions"
authors = [{name = "Kiket", email = "platform@kiket.dev"}]
license = {text = "MIT"}
readme = "README.md"
requires-python = ">=3.11"
keywords = ["kiket", "extensions", "webhooks", "automation"]
dependencies = [
"fastapi>=0.111",
"httpx>=0.27",
"pyjwt[crypto]>=2.8",
"pydantic>=2.7",
"pyyaml>=6.0",
"python-dotenv>=1.0",
"uvicorn>=0.30",
]
[project.urls]
Homepage = "https://docs.kiket.dev/extensions/python-sdk/quickstart"
Documentation = "https://docs.kiket.dev/extensions/python-sdk/quickstart"
Source = "https://github.com/kiket-dev/kiket-python-sdk"
Issues = "https://github.com/kiket-dev/kiket-python-sdk/issues"
[project.optional-dependencies]
dev = [
"pytest>=8.2",
"pytest-asyncio>=0.23",
"pytest-cov>=4.0",
"ruff>=0.6",
"mypy>=1.10",
"types-PyYAML>=6.0",
]
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["kiket_sdk", "kiket_sdk.testing"]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "UP", "B"]
ignore = ["E501"] # Line too long (handled by formatter)
[tool.mypy]
python_version = "3.11"
warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = false
[[tool.mypy.overrides]]
module = [
"httpx.*",
"jwt.*",
"uvicorn.*",
"fastapi.*",
"pytest.*",
]
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-ra --strict-markers"
testpaths = ["tests"]
asyncio_mode = "auto"