forked from snok/django-auth-adfs
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
61 lines (58 loc) · 2.08 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
from setuptools import setup, find_packages
from django_auth_adfs import __version__
with open('README.rst') as readme_file:
readme = readme_file.read()
with open('CHANGELOG.rst') as changelog_file:
changelog = changelog_file.read()
setup(
name='django-auth-adfs',
version=__version__,
packages=find_packages(exclude=["tests"]),
include_package_data=True,
author='Joris Beckers',
author_email='[email protected]',
url="https://github.com/jobec/django-auth-adfs",
download_url="https://pypi.python.org/pypi/django-auth-adfs",
description='A Django authentication backend for Microsoft ADFS and AzureAD',
long_description=readme + '\n\n' + changelog,
license="BSD",
keywords='django authentication adfs oauth2',
classifiers=[
'Environment :: Web Environment',
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: WSGI',
'Topic :: Software Development :: Libraries :: Application Frameworks',
'Topic :: Software Development :: Libraries :: Python Modules',
'Development Status :: 5 - Production/Stable',
],
install_requires=[
'pyjwt >= 1.0.1',
'cryptography>=1.7',
'django >= 1.11',
'requests',
],
tests_require=[
"responses",
"mock",
"cryptography",
"coverage",
"tox",
"djangorestframework",
],
zip_safe=False,
)