2014-12-19 15:27:43 +00:00
|
|
|
import os
|
|
|
|
from setuptools import setup
|
|
|
|
|
|
|
|
with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
|
|
|
|
README = readme.read()
|
|
|
|
|
|
|
|
# allow setup.py to be run from any path
|
|
|
|
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
|
|
|
|
|
|
|
|
setup(
|
2015-02-11 18:37:51 +00:00
|
|
|
name='django-oidc-provider',
|
2015-04-22 14:53:19 +00:00
|
|
|
version='0.0.4',
|
2015-03-13 20:42:32 +00:00
|
|
|
packages=[
|
|
|
|
'oidc_provider', 'oidc_provider/lib', 'oidc_provider/lib/endpoints',
|
|
|
|
'oidc_provider/lib/utils', 'oidc_provider/tests',
|
|
|
|
],
|
2014-12-19 15:27:43 +00:00
|
|
|
include_package_data=True,
|
|
|
|
license='MIT License',
|
2015-02-18 18:07:22 +00:00
|
|
|
description='OpenID Connect Provider implementation for Django.',
|
2014-12-19 15:27:43 +00:00
|
|
|
long_description=README,
|
2015-02-11 18:37:51 +00:00
|
|
|
url='http://github.com/juanifioren/django-oidc-provider',
|
2014-12-19 15:27:43 +00:00
|
|
|
author='Juan Ignacio Fiorentino',
|
|
|
|
author_email='juanifioren@gmail.com',
|
|
|
|
classifiers=[
|
|
|
|
'Environment :: Web Environment',
|
|
|
|
'Framework :: Django',
|
|
|
|
'Intended Audience :: Developers',
|
|
|
|
'License :: OSI Approved :: MIT License',
|
|
|
|
'Operating System :: OS Independent',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 2',
|
|
|
|
'Programming Language :: Python :: 2.7',
|
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
|
|
],
|
2014-12-19 15:45:19 +00:00
|
|
|
install_requires=[
|
2015-04-20 16:49:45 +00:00
|
|
|
'pyjwt==1.1.0',
|
2014-12-19 15:45:19 +00:00
|
|
|
],
|
2015-02-19 17:29:27 +00:00
|
|
|
)
|