better-auth-sqlalchemy 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.
@@ -0,0 +1,19 @@
1
+ .DS_Store
2
+ __pycache__/
3
+ *.py[cod]
4
+ .pytest_cache/
5
+ .ruff_cache/
6
+ .mypy_cache/
7
+ .coverage
8
+ htmlcov/
9
+ dist/
10
+ build/
11
+ *.egg-info/
12
+ .venv/
13
+ venv/
14
+ .env
15
+ .env.*
16
+ !.env.example
17
+ node_modules/
18
+ .next/
19
+ docs/.next/
@@ -0,0 +1,15 @@
1
+ Metadata-Version: 2.4
2
+ Name: better-auth-sqlalchemy
3
+ Version: 0.0.1
4
+ Summary: SQLAlchemy adapter 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-sqlalchemy
11
+
12
+ SQLAlchemy adapter package scaffold for `better-auth-py`.
13
+
14
+ This package reserves the public distribution and import namespace. Runtime
15
+ adapter support will be added when the SQLAlchemy storage API is implemented.
@@ -0,0 +1,6 @@
1
+ # better-auth-sqlalchemy
2
+
3
+ SQLAlchemy adapter package scaffold for `better-auth-py`.
4
+
5
+ This package reserves the public distribution and import namespace. Runtime
6
+ adapter support will be added when the SQLAlchemy storage API is implemented.
@@ -0,0 +1,21 @@
1
+ [project]
2
+ name = "better-auth-sqlalchemy"
3
+ version = "0.0.1"
4
+ description = "SQLAlchemy adapter 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/sqlalchemy"]
19
+
20
+ [tool.pytest.ini_options]
21
+ testpaths = ["tests"]
@@ -0,0 +1 @@
1
+ """SQLAlchemy adapter namespace."""
@@ -0,0 +1,5 @@
1
+ import better_auth.sqlalchemy
2
+
3
+
4
+ def test_import():
5
+ assert better_auth.sqlalchemy.__name__ == "better_auth.sqlalchemy"