-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
59 lines (50 loc) · 1.29 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
[project]
name = "workos"
version = "5.46.0"
description = "WorkOS Python Client"
readme = "README.md"
license = "MIT"
authors = [{ name = "WorkOS", email = "team@workos.com" }]
requires-python = ">=3.10"
dependencies = [
"cryptography>=44.0.2",
"httpx~=0.28.1",
"pydantic>=2.10.4",
"pyjwt>=2.12.0",
]
[project.urls]
Homepage = "https://workos.com/docs/sdks/python"
Documentation = "https://workos.com/docs/reference"
Changelog = "https://workos.com/docs/sdks/python"
[dependency-groups]
dev = [
{ include-group = "test" },
{ include-group = "lint" },
{ include-group = "type_check" },
{ include-group = "nox" },
]
test = ["pytest~=8.3", "pytest-asyncio~=1.3", "pytest-cov~=7.0"]
lint = ["ruff==0.14.5"]
type_check = ["pyright~=1.1"]
nox = ["nox~=2026.2", "nox-uv~=0.7"]
[tool.mypy]
packages = "workos"
warn_return_any = true
warn_unused_configs = true
warn_unreachable = true
warn_redundant_casts = true
warn_no_return = true
warn_unused_ignores = true
implicit_reexport = true
strict_equality = true
strict = true
[tool.ruff.lint.per-file-ignores]
"*/__init__.py" = ["F401", "F403"]
[tool.ruff.lint.mccabe]
max-complexity = 10
[tool.uv.build-backend]
source-include = ["py.typed"]
source-exclude = ["tests*"]
[build-system]
requires = ["uv_build>=0.8.15,<0.9.0"]
build-backend = "uv_build"