-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 1.39 KB
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
[tool.poetry]
name = "authlib-gino"
version = "0.3.0"
description = "OpenID Connect provider implemented with Authlib and GINO."
authors = ["Fantix King <fantix.king@gmail.com>"]
license = "BSD-3-Clause"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
]
[tool.poetry.dependencies]
python = "^3.8"
authlib = "^0.14.3"
gino = "^1.0.1"
starlette = {version = "^0.13.2", optional = true}
fastapi = {version = "^0.55.1", optional = true}
alembic = {version = "^1.4.2", optional = true}
psycopg2-binary = {version = "^2.8.5", optional = true}
python-multipart = {version = "^0.0.5", optional = true}
[tool.poetry.extras]
starlette = ["starlette"]
app = ["fastapi", "alembic", "psycopg2-binary", "python-multipart"]
[tool.poetry.dev-dependencies]
pytest = "^6.0.1"
pytest-asyncio = "^0.12.0"
[tool.poetry.plugins."gino.app.extensions"]
"session.oidc" = "authlib_gino.fastapi_session.oidc:init_app"
"session.admin" = "authlib_gino.fastapi_session.admin:init_app"
"session.demo" = "authlib_gino.fastapi_session.demo_login:init_app"
[tool.poetry.plugins."gino.app.migrations"]
"session.oidc" = "authlib_gino.fastapi_session:migrations"
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"