-
Notifications
You must be signed in to change notification settings - Fork 46
/
setup.py
35 lines (34 loc) · 1.1 KB
/
setup.py
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
from setuptools import setup
setup(
name='drf-oidc-auth',
version='3.0.0',
packages=['oidc_auth'],
url='https://github.com/ByteInternet/drf-oidc-auth',
license='MIT',
author='Maarten van Schaik',
author_email='support@byte.nl',
description='OpenID Connect authentication for Django Rest Framework',
install_requires=[
'authlib>=0.15.0',
'cryptography>=2.6',
'django>=2.2.0',
'djangorestframework>=3.11.0',
'requests>=2.20.0'
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Topic :: Internet',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Security',
],
)