forked from divio/django-simple-sso
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
47 lines (44 loc) · 1.28 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
from setuptools import setup, find_packages
from simple_sso import __version__ as version
import os
README = os.path.join(os.path.dirname(__file__), 'README.rst')
with open(README) as fobj:
long_description = fobj.read()
setup(name="django-simple-sso",
version=version,
description="Simple SSO for Django",
long_description=long_description,
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',
],
keywords='django sso',
author='Jonas Obrist',
author_email='[email protected]',
url='http://github.com/aldryn/django-simple-sso',
license='BSD',
packages=find_packages(),
install_requires=[
'itsdangerous'
],
extras_require = {
'server': [
'django',
'webservices[server]',
'south',
],
'client': [
'requests',
'webservices[server]',
],
},
include_package_data=True,
zip_safe=False,
use_2to3=True
)