better-auth-starlette 0.0.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- better_auth_starlette-0.0.1/.gitignore +19 -0
- better_auth_starlette-0.0.1/PKG-INFO +15 -0
- better_auth_starlette-0.0.1/README.md +6 -0
- better_auth_starlette-0.0.1/pyproject.toml +21 -0
- better_auth_starlette-0.0.1/src/better_auth/starlette/__init__.py +1 -0
- better_auth_starlette-0.0.1/tests/test_import.py +5 -0
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: better-auth-starlette
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Starlette integration package scaffold for better-auth-py.
|
|
5
|
+
License-Expression: MIT
|
|
6
|
+
Requires-Python: >=3.10
|
|
7
|
+
Requires-Dist: better-auth-py==0.0.1
|
|
8
|
+
Description-Content-Type: text/markdown
|
|
9
|
+
|
|
10
|
+
# better-auth-starlette
|
|
11
|
+
|
|
12
|
+
Starlette integration package scaffold for `better-auth-py`.
|
|
13
|
+
|
|
14
|
+
This package reserves the public distribution and import namespace. Runtime
|
|
15
|
+
integration will be added when the Starlette adapter API is implemented.
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "better-auth-starlette"
|
|
3
|
+
version = "0.0.1"
|
|
4
|
+
description = "Starlette integration package scaffold for better-auth-py."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
license = "MIT"
|
|
7
|
+
requires-python = ">=3.10"
|
|
8
|
+
dependencies = ["better-auth-py==0.0.1"]
|
|
9
|
+
|
|
10
|
+
[build-system]
|
|
11
|
+
requires = ["hatchling>=1.27"]
|
|
12
|
+
build-backend = "hatchling.build"
|
|
13
|
+
|
|
14
|
+
[tool.hatch.build]
|
|
15
|
+
dev-mode-dirs = ["src"]
|
|
16
|
+
|
|
17
|
+
[tool.hatch.build.targets.wheel]
|
|
18
|
+
packages = ["src/better_auth/starlette"]
|
|
19
|
+
|
|
20
|
+
[tool.pytest.ini_options]
|
|
21
|
+
testpaths = ["tests"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Starlette integration namespace."""
|