-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.cfg
55 lines (54 loc) · 1.38 KB
/
setup.cfg
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
54
55
[metadata]
name = fastapi-oauth2
version = attr: fastapi_oauth2.__version__
author = Artyom Vancyan
author_email = [email protected]
description = Easy to integrate OAuth2 authentication with support for several identity providers.
long_description = file: README.md
long_description_content_type = text/markdown
project_urls =
Documentation=https://docs.pysnippet.org/fastapi-oauth2/
Source Code=https://github.com/pysnippet/fastapi-oauth2/
keywords =
python
sso
auth
login
oauth
oauth2
social
fastapi
allauth
security
middleware
authentication
license = MIT
license_files = LICENSE
platforms = unix, linux, osx, win32
classifiers =
Operating System :: OS Independent
Development Status :: 5 - Production/Stable
Framework :: FastAPI
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
License :: OSI Approved :: MIT License
[options]
packages =
fastapi_oauth2
install_requires =
fastapi>=0.68.1
httpx>=0.23.0
oauthlib>=3.2.2
python-jose>=3.3.0
social-auth-core>=4.4.2
starlette>=0.19.1
include_package_data = yes
python_requires = >=3.7
package_dir =
=src
zip_safe = no