-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
74 lines (67 loc) · 1.66 KB
/
Copy pathpyproject.toml
File metadata and controls
74 lines (67 loc) · 1.66 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
72
73
74
[build-system]
requires = ["hatchling>=1.26"]
build-backend = "hatchling.build"
[project]
name = "supertab-connect-sdk"
version = "1.0.0"
authors = [
{ name = "Supertab", email = "hello@supertab.co" },
]
description = "Supertab Connect SDK"
readme = "README.md"
requires-python = ">=3.12"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Software Development :: Libraries :: Python Modules",
"Typing :: Typed",
]
license = "MIT"
license-files = ["LICEN[CS]E*"]
dependencies = [
"PyJWT[crypto]>=2.10,<3",
"httpx>=0.28,<1",
]
[project.optional-dependencies]
dev = [
"build>=1.4.2",
"hatchling>=1.26",
"prek>=0.3.8",
"pytest>=8,<9",
"pytest-asyncio>=0.24",
"respx>=0.22",
"ruff>=0.15.7",
"twine>=6",
"ty>=0.0.25",
]
[project.urls]
Homepage = "https://www.supertab.co/supertab-connect"
Repository = "https://github.com/getsupertab/connect-sdk-python"
Issues = "https://github.com/getsupertab/connect-sdk-python/issues"
Documentation = "https://connect-docs.supertab.co/reference/sdk/python"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.ruff]
line-length = 119
[tool.hatch.build.targets.wheel]
packages = ["supertab_connect"]
[tool.hatch.build.targets.sdist]
exclude = [
"/.github",
"/.idea",
"/.pytest_cache",
"/.ruff_cache",
"/.uv-cache",
"/.venv",
"/build",
"/dist",
"/uv.lock",
"/prek.toml",
"/DEVELOPMENT.md",
]