forked from lighthouse-intelligence/djangosaml2idp
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
56 lines (54 loc) · 2.06 KB
/
Copy pathsetup.py
File metadata and controls
56 lines (54 loc) · 2.06 KB
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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from djangosaml2idp import __version__
setup(
name='djangosaml2idp2',
version=__version__,
description='SAML 2.0 Identity Provider for Django',
keywords="django,pysaml2,sso,saml2,federated authentication,authentication,idp",
author='Mathieu Hinderyckx',
author_email='mathieu.hinderyckx@gmail.com',
maintainer="Mikuláš Poul",
maintainer_email="mikulaspoul@gmail.com",
long_description="\n\n".join([
open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
]),
install_requires=[
'django>=4.2',
'pysaml2>=6.5.1',
'pytz',
'arrow',
],
python_requires=">=3.9",
license='Apache Software License 2.0',
packages=find_packages(exclude=["tests*", "docs", "example_setup"]),
url='https://github.com/xelixdev/djangosaml2idp',
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
"Framework :: Django :: 5.2",
"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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"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'
]
)