Files
fastapi-users/pyproject.toml
dependabot-preview[bot] 9281962c2e Bump sqlalchemy from 1.3.13 to 1.3.14 (#125)
* Bump sqlalchemy from 1.3.13 to 1.3.14

Bumps [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) from 1.3.13 to 1.3.14.
- [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases)
- [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/master/CHANGES)
- [Commits](https://github.com/sqlalchemy/sqlalchemy/commits)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>

* Make sqlalchemy dep version less restrictive

Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: François Voron <fvoron@gmail.com>
2020-03-11 08:28:38 +01:00

48 lines
1.2 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.52.0,<0.53.0",
"passlib[bcrypt] ==1.7.2",
"email-validator ==1.0.5",
"pyjwt ==1.7.1",
"python-multipart ==0.0.5",
]
[tool.flit.metadata.requires-extra]
sqlalchemy = [
"sqlalchemy >=1.3.13,<1.4",
"databases ==0.2.6",
]
mongodb = [
"motor ==2.1.0",
]
tortoise-orm = [
"tortoise-orm >=0.15.18,<0.16.0"
]
oauth = [
"httpx-oauth >0.2,<0.3"
]
[tool.flit.metadata.urls]
Documentation = "https://frankie567.github.io/fastapi-users/"