2014-12-19 15:27:43 +00:00
|
|
|
import os
|
2016-10-28 18:29:17 +00:00
|
|
|
from setuptools import (
|
|
|
|
find_packages,
|
|
|
|
setup,
|
|
|
|
)
|
2014-12-19 15:27:43 +00:00
|
|
|
|
|
|
|
|
|
|
|
# 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',
|
2018-07-10 14:16:02 +00:00
|
|
|
version='0.6.1',
|
2016-10-28 18:29:17 +00:00
|
|
|
packages=find_packages(),
|
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.',
|
2016-02-02 16:18:40 +00:00
|
|
|
long_description='http://github.com/juanifioren/django-oidc-provider',
|
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=[
|
2018-04-27 17:47:07 +00:00
|
|
|
'Development Status :: 5 - Production/Stable',
|
2014-12-19 15:27:43 +00:00
|
|
|
'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',
|
2015-07-06 16:03:51 +00:00
|
|
|
'Programming Language :: Python :: 3',
|
2016-10-28 18:30:47 +00:00
|
|
|
'Programming Language :: Python :: 3.5',
|
2017-05-08 22:40:24 +00:00
|
|
|
'Programming Language :: Python :: 3.6',
|
2014-12-19 15:27:43 +00:00
|
|
|
'Topic :: Internet :: WWW/HTTP',
|
|
|
|
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
|
|
|
|
],
|
2016-08-11 19:43:30 +00:00
|
|
|
test_suite='runtests.runtests',
|
2015-06-08 17:12:05 +00:00
|
|
|
tests_require=[
|
2017-04-23 13:27:59 +00:00
|
|
|
'pyjwkest>=1.3.0',
|
|
|
|
'mock>=2.0.0',
|
2015-06-08 17:12:05 +00:00
|
|
|
],
|
|
|
|
|
2014-12-19 15:45:19 +00:00
|
|
|
install_requires=[
|
2017-04-23 13:27:59 +00:00
|
|
|
'pyjwkest>=1.3.0',
|
2014-12-19 15:45:19 +00:00
|
|
|
],
|
2015-02-19 17:29:27 +00:00
|
|
|
)
|