forked from divio/django-simple-sso
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (33 loc) · 1.07 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
from setuptools import setup, find_packages
from simple_sso import __version__ as version
setup(
name="django-simple-sso",
version=version,
description="Simple SSO for Django",
long_description=open('README.rst').read(),
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Topic :: Software Development',
'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',
],
keywords='django sso',
author='Jonas Obrist',
author_email='jonas.obrist@divio.ch',
url='http://github.com/aldryn/django-simple-sso',
license='BSD',
packages=find_packages(),
install_requires=[
'itsdangerous',
'Django>=1.11',
'webservices[django]',
],
include_package_data=True,
zip_safe=False,
)