forked from OTA-Insight/djangosaml2idp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
49 lines (47 loc) · 1.85 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
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
from flasksaml2idp import __version__
setup(
name='flasksaml2idp',
version=__version__,
description='SAML 2.0 Identity Provider for Flask',
keywords="flask,pysaml2,sso,saml2,federated authentication,authentication,idp",
author='Yoeri Otten, Mathieu Hinderyckx',
author_email='[email protected], [email protected]',
maintainer="Yoeri Otten",
long_description="\n\n".join([
open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
]),
install_requires=[
'Flask>=1.0',
'Flask-Login',
'pysaml2>=4.5.0'
],
license='Apache Software License 2.0',
packages=find_packages(exclude=["tests*", "docs", "example_setup"]),
url='https://github.com/verenigingcampuskabel/flask-saml2idp/',
zip_safe=False,
include_package_data=True,
classifiers=[
"Development Status :: 5 - Production/Stable",
'Environment :: Web Environment',
"Framework :: Flask",
"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.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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'
]
)