-
-
Notifications
You must be signed in to change notification settings - Fork 460
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (64 loc) · 1.81 KB
/
pyproject.toml
File metadata and controls
71 lines (64 loc) · 1.81 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 = "supabase_auth"
version = "2.28.2" # {x-release-please-version}
description = "Python Client Library for Supabase Auth"
authors = [
{name = "Joel Lee", email = "joel@joellee.org" }
]
maintainers = [
{ name = "Leonardo Santiago", email = "leonardo.santiago@supabase.io" }
]
readme = "README.md"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
requires-python = ">=3.9"
dependencies = [
"httpx[http2] >=0.26,<0.29",
"pydantic >=1.10,<3",
"pyjwt[crypto] >=2.10.1",
]
[project.urls]
homepage = "https://github.com/supabase/supabase-py/tree/main/src/auth"
repository = "https://github.com/supabase/supabase-py"
documentation = "https://github.com/supabase/supabase-py/tree/main/src/auth"
changelog = "https://github.com/supabase/supabase-py/tree/main/CHANGELOG.md"
# [project.scripts]
# gh-download = "scripts.gh-download:main"
[dependency-groups]
tests = [
"Faker >= 37.4.0",
"respx >=0.20.2,<0.23.0",
"pytest >= 8.4.1",
"pytest-mock >= 3.14.0",
"pytest-cov >= 6.2.1",
"pytest-depends >= 1.0.1",
"pytest-asyncio >= 1.0.0",
"pyotp>=2.9.0",
]
lints = [
"ruff >=0.12.1",
"unasync >= 0.6.0",
"python-lsp-server (>=1.12.2,<2.0.0)",
"pylsp-mypy (>=0.7.0,<0.8.0)",
"python-lsp-ruff (>=2.2.2,<3.0.0)",
]
dev = [{ include-group = "lints" }, {include-group = "tests" }]
[tool.pytest.ini_options]
asyncio_mode = "auto"
[build-system]
requires = ["uv_build>=0.8.3,<0.9.0"]
build-backend = "uv_build"
[tool.mypy]
python_version = "3.9"
check_untyped_defs = true
allow_redefinition = true
follow_untyped_imports = true # for deprecation module that does not have stubs
no_warn_no_return = true
warn_return_any = true
warn_unused_configs = true
warn_redundant_casts = true
warn_unused_ignores = true