mirror of
https://github.com/fastapi-users/fastapi-users.git
synced 2025-11-03 05:27:06 +08:00
* Bump fastapi from 0.45.0 to 0.46.0 Bumps [fastapi](https://github.com/tiangolo/fastapi) from 0.45.0 to 0.46.0. - [Release notes](https://github.com/tiangolo/fastapi/releases) - [Changelog](https://github.com/tiangolo/fastapi/blob/master/docs/history-design-future.md) - [Commits](https://github.com/tiangolo/fastapi/compare/0.45.0...0.46.0) Signed-off-by: dependabot-preview[bot] <support@dependabot.com> * Bump fastapi in pyproject Co-authored-by: François Voron <fvoron@gmail.com>
45 lines
1.1 KiB
TOML
45 lines
1.1 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 :: 3 - Alpha",
|
|
"Framework :: AsyncIO",
|
|
"Intended Audience :: Developers",
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3 :: Only",
|
|
"Topic :: Internet :: WWW/HTTP :: Session",
|
|
]
|
|
description-file = "README.md"
|
|
requires-python = ">=3.7"
|
|
requires = [
|
|
"fastapi ==0.46.0",
|
|
"passlib[bcrypt] ==1.7.1",
|
|
"email-validator ==1.0.5",
|
|
"pyjwt ==1.7.1",
|
|
"python-multipart ==0.0.5",
|
|
]
|
|
|
|
[tool.flit.metadata.requires-extra]
|
|
sqlalchemy = [
|
|
"sqlalchemy ==1.3.12",
|
|
"databases ==0.2.6",
|
|
]
|
|
mongodb = [
|
|
"motor ==2.1.0",
|
|
]
|
|
tortoise-orm = [
|
|
"tortoise-orm ==0.15.7"
|
|
]
|
|
|
|
[tool.flit.metadata.urls]
|
|
Documentation = "https://frankie567.github.io/fastapi-users/"
|