Files
fastapi-users/pyproject.toml
Paolo Dina 579313f887 Ormar backend support (#470)
* Add db adapter for ormar (wip)

* finish ormar support enough to pass tests

* remove idea folder

* update ormar version in tool.flit.metadata.requires-extra

* Add documentation about ormar

* Apply isort and black formatting

* Restore python 3.7 in Pipfile

* Update build.yml

* Add missing test for ormar update

* changes after review

Co-authored-by: Paolo Dina <paolo.dina@codingmoth.com>
Co-authored-by: collerek <collerek@gmail.com>
2021-02-07 09:34:40 +01:00

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.10",
"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.0,<0.10.0"
]
oauth = [
"httpx-oauth >=0.3,<0.4"
]
[tool.flit.metadata.urls]
Documentation = "https://frankie567.github.io/fastapi-users/"