forked from RealmTeam/django-rest-framework-social-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
30 lines (29 loc) · 1.06 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
from setuptools import setup, find_packages
setup(
name='django-rest-framework-social-oauth2',
version=__import__('rest_framework_social_oauth2').__version__,
description=__import__('rest_framework_social_oauth2').__doc__,
long_description=open('README.rst').read(),
author='Philip Garnero',
author_email='[email protected]',
url='https://github.com/PhilipGarnero/django-rest-framework-social-oauth2',
license='MIT',
packages=find_packages(),
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
install_requires=[
'djangorestframework>=3.0.1',
'django-oauth-toolkit>=0.9.0',
'python-social-auth>=0.2.2'
],
include_package_data=True,
zip_safe=False,
)