Metadata-Version: 2.4
Name: better-auth-py
Version: 0.0.1
Summary: Python port of Better Auth's authentication framework concepts.
Project-URL: Homepage, https://github.com/sebasxsala/better-auth-py
Project-URL: Repository, https://github.com/sebasxsala/better-auth-py
Project-URL: Upstream, https://github.com/better-auth/better-auth
Author: Sebastian Sala
License-Expression: MIT
Keywords: auth,oauth,oidc,python,security
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Security
Requires-Python: >=3.10
Requires-Dist: typing-extensions>=4.12.0; python_version < '3.11'
Provides-Extra: dev
Requires-Dist: build>=1.2.2; extra == 'dev'
Requires-Dist: hatchling>=1.27; extra == 'dev'
Requires-Dist: pytest>=8.3; extra == 'dev'
Description-Content-Type: text/markdown

# better-auth-py

Python package for the Better Auth port.

This package starts as a namespace and parity scaffold. The source of truth for
the TypeScript implementation is the repository submodule at
`../../upstream/better-auth`, locked to Better Auth `v1.6.9`.

## Install for development

```bash
python -m pip install -e .
```

## Import

```python
import better_auth

print(better_auth.__version__)
```
