-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (30 loc) · 914 Bytes
/
pyproject.toml
File metadata and controls
36 lines (30 loc) · 914 Bytes
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
[project]
name = "fastapi-async-auth-kit"
version = "0.11.0"
description = "Production-ready FastAPI auth system with JWT, refresh tokens, and async DB support"
readme = "README.md"
authors = [{ name="Keyurkumar", email="kmistry1110@gmail.com" }]
license = "MIT"
requires-python = ">=3.8"
dependencies = [
"fastapi",
"pydantic",
"python-jose",
"argon2-cffi",
"sqlalchemy>=2.0"
]
[project.optional-dependencies]
postgres = ["asyncpg"]
mysql = ["aiomysql"]
sqlite = ["aiosqlite"]
mongodb = ["motor"]
[project.urls]
Repository = "https://github.com/kmistry1110/fastapi_auth"
Issues = "https://github.com/kmistry1110/fastapi_auth/issues"
Changelog = "https://github.com/kmistry1110/fastapi_auth/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["."]
include = ["fastapi_async_auth_kit*"]