forked from wagnerdelima/drf-social-oauth2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (35 loc) · 1.25 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
from setuptools import setup, find_packages
import sys
if sys.version_info < (3, 5):
raise SystemError('This package is for Python 3.5 and above.')
setup(
name='drf-social-oauth2',
version=__import__('drf_social_oauth2').__version__,
description=__import__('drf_social_oauth2').__doc__,
long_description=open('README.rst').read(),
author='Wagner de Lima',
author_email='[email protected]',
url='https://github.com/wagnerdelima/drf-social-oauth2',
license='MIT',
packages=find_packages(),
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Natural Language :: English',
],
install_requires=[
'djangorestframework>=3.10.3',
'django-oauth-toolkit>=0.12.0',
'social-auth-app-django>=3.1.0',
'python-jose[cryptography]>=3.3.0',
],
include_package_data=True,
zip_safe=False,
)