mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-08-26 04:25:46 +08:00
55 lines
1.4 KiB
TOML
55 lines
1.4 KiB
TOML
[build-system]
|
|
requires = ["flit_core >=2,<3"]
|
|
build-backend = "flit_core.buildapi"
|
|
|
|
[tool.flit.metadata]
|
|
module = "fastapi_users"
|
|
dist-name = "fastapi-users"
|
|
author = "François Voron"
|
|
author-email = "fvoron@gmail.com"
|
|
home-page = "https://github.com/frankie567/fastapi-users"
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"Development Status :: 5 - Production/Stable",
|
|
"Framework :: AsyncIO",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Topic :: Internet :: WWW/HTTP :: Session",
|
|
]
|
|
description-file = "README.md"
|
|
requires-python = ">=3.7"
|
|
requires = [
|
|
"fastapi >=0.54.0,<0.64.0",
|
|
"passlib[bcrypt] ==1.7.4",
|
|
"email-validator >=1.1.0,<1.2",
|
|
"pyjwt ==2.0.1",
|
|
"python-multipart ==0.0.5",
|
|
"makefun >=1.9.2,<1.12",
|
|
"typing-extensions >=3.7.4.3; python_version < '3.8'",
|
|
"Deprecated >=1.2.10,<2.0.0"
|
|
]
|
|
|
|
[tool.flit.metadata.requires-extra]
|
|
sqlalchemy = [
|
|
"sqlalchemy >=1.3.13,<1.4",
|
|
"databases >=0.3.0,<0.5",
|
|
]
|
|
mongodb = [
|
|
"motor >=2.2.0,<3.0.0",
|
|
]
|
|
tortoise-orm = [
|
|
"tortoise-orm >=0.16.0,<0.17.0"
|
|
]
|
|
ormar = [
|
|
"ormar >=0.9.5,<0.10.0"
|
|
]
|
|
oauth = [
|
|
"httpx-oauth >=0.3,<0.4"
|
|
]
|
|
|
|
[tool.flit.metadata.urls]
|
|
Documentation = "https://frankie567.github.io/fastapi-users/"
|