forked from fastapi-users/fastapi-users
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
53 lines (50 loc) · 1.4 KB
/
pyproject.toml
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
[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 = "[email protected]"
home-page = "https://github.com/fastapi-users/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.65.2,<0.69.0",
"passlib[bcrypt] ==1.7.4",
"email-validator >=1.1.0,<1.2",
"pyjwt ==2.1.0",
"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 = [
"fastapi-users-db-sqlalchemy >=1.0.0",
]
mongodb = [
"fastapi-users-db-mongodb >=1.0.0",
]
tortoise-orm = [
"fastapi-users-db-tortoise >=1.0.0",
]
ormar = [
"fastapi-users-db-ormar >=1.0.0",
]
oauth = [
"httpx-oauth >=0.3,<0.4"
]
[tool.flit.metadata.urls]
Documentation = "https://fastapi-users.github.io/fastapi-users/"