forked from tomasvotava/fastapi-sso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (30 loc) · 944 Bytes
/
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
[tool.poetry]
name = "fastapi-sso"
version = "0.4.0"
description = "FastAPI plugin to enable SSO to most common providers (such as Facebook login, Google login and login via Microsoft Office 365 Account)"
authors = ["Tomas Votava <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/tomasvotava/fastapi-sso"
homepage = "https://tomasvotava.github.io/fastapi-sso/"
documentation = "https://tomasvotava.github.io/fastapi-sso/"
keywords = ["fastapi", "sso", "oauth", "google", "facebook", "spotify"]
[tool.black]
line_length = 119
[tool.poetry.dependencies]
python = ">=3.7,<4.0"
fastapi = "<1"
oauthlib = ">=3.1.0"
starlette = ">=0.13.6"
pydantic = ">=1.8.1"
httpx = "^0.23.0"
[tool.poetry.dev-dependencies]
black = "^22.3"
pylint = "^2.7.2"
fastapi = "<1"
pdoc3 = "^0.9.2"
uvicorn = "^0.17.6"
mypy = "^0.960"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"