-
Notifications
You must be signed in to change notification settings - Fork 97
/
setup.py
65 lines (63 loc) · 2.21 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
62
63
64
65
# -*- 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.2',
'pysaml2>=6.5.1',
'pytz',
'arrow',
],
extras_require={
"testing": [
"pytest",
"pytest-runner",
"pytest-django",
"pytest-cov",
"pytest-pythonpath",
"pytest-mock",
"requests-mock"
]
},
python_requires=">=3.6",
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 :: 5 - Production/Stable",
'Environment :: Web Environment',
"Framework :: Django",
"Framework :: Django :: 2.2",
"Framework :: Django :: 3.0",
"Framework :: Django :: 3.1",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: Apache Software License",
'Operating System :: OS Independent',
'Programming Language :: Python',
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"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'
]
)