-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
54 lines (52 loc) · 1.94 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
# -*- 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="OTA Insight",
long_description="\n\n".join([
open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
#open('HISTORY.rst').read()
]),
install_requires=[
'django>=1.8',
'pysaml2>=4.4.0'
],
license='MIT',
packages=find_packages(exclude=["tests*", "docs"]),
url='https://github.com/OTA-Insight/djangosaml2idp',
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 3 - Alpha",
'Environment :: Web Environment',
"Framework :: Django",
"Framework :: Django :: 1.7",
"Framework :: Django :: 1.8",
"Framework :: Django :: 1.9",
"Framework :: Django :: 1.10",
"Framework :: Django :: 1.11",
'Intended Audience :: Developers',
"License :: OSI Approved :: MIT License",
'Operating System :: OS Independent',
'Programming Language :: Python',
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"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'
]
)