forked from jcarbaugh/django-googleauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 892 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
from setuptools import setup
long_description = open('README.rst').read()
setup(
name="django-googleauth",
version='2.1',
packages=["googleauth"],
description="OAuth 2.0 authentication for Google and Google Apps accounts",
url="https://github.com/jcarbaugh/django-googleauth",
author="Jeremy Carbaugh",
author_email="[email protected]",
license='BSD',
long_description=long_description,
platforms=["any"],
install_requires=[
"PyJWT>=0.4.1",
"requests>=2.5.1",
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)