-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
40 lines (32 loc) · 1.42 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
38
39
40
from __future__ import unicode_literals
from setuptools import setup, find_packages
import simple_socialauth
setup(
name='django-simple-socialauth',
version=simple_socialauth.__version__,
description="Django social account authentication app based on requests-oauthlib.",
long_description='View `django-simple-socialauth documentation on Github <https://github.com/jaddison/django-simple-socialauth>`_.',
keywords='django social authentication oauth register login auth',
url='https://github.com/jaddison/django-simple-socialauth',
author='jaddison',
author_email='addi00+github.com@gmail.com',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'Topic :: Internet :: WWW/HTTP',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
install_requires=['requests-oauthlib'],
)