-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
41 lines (35 loc) · 1001 Bytes
/
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
# encoding: utf-8
"""
Auth0 for OEDX
"""
from setuptools import setup, find_packages
from auth0.auth0 import __version__
__author__ = 'nagai'
setup(
name='auth0',
description='User authentication of Open edX using Auth0',
author='Takashi Nagai',
author_email='[email protected]',
url='',
version=__version__,
license='GPL-3.0',
keywords=['openedx', 'auth0'],
packages=find_packages(),
include_package_data=True,
install_requires=[
'python-social-auth',
'social-auth-core',
'social-auth-app-django',
'django'
],
classifiers=[
# https://pypi.python.org/pypi?%3Aaction=list_classifiers
'Intended Audience :: Developers',
'Intended Audience :: Education',
'License :: OSI Approved :: GNU General Public License v3',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Education',
'Topic :: Internet :: WWW/HTTP',
],
)