This repository has been archived by the owner on Feb 2, 2019. It is now read-only.
forked from OTA-Insight/djangosaml2idp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
48 lines (46 loc) · 1.76 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from djangosaml2idp import __version__
setup(
name='djangosaml2idp',
version=__version__,
description='SAML 2.0 Identity Provider for Django',
keywords="django,pysaml2,sso,saml2,federated authentication,authentication,idp",
author='Mathieu Hinderyckx',
author_email='[email protected]',
maintainer="Mathieu Hinderyckx",
long_description="\n\n".join([
open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
]),
install_requires=[
'django>=2.0',
'pysaml2>=4.5.0'
],
license='Apache Software License 2.0',
packages=find_packages(exclude=["tests*", "docs", "example_setup"]),
url='https://github.com/OTA-Insight/djangosaml2idp/',
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 4 - Beta",
'Environment :: Web Environment',
"Framework :: Django",
"Framework :: Django :: 2.0",
"Framework :: Django :: 2.1",
'Intended Audience :: Developers',
"License :: OSI Approved :: Apache Software License",
'Operating System :: OS Independent',
'Programming Language :: Python',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: WSGI",
"Topic :: Security",
"Topic :: Software Development :: Libraries :: Application Frameworks",
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)