forked from jcarbaugh/django-googleauth
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (24 loc) · 850 Bytes
/
setup.py
File metadata and controls
26 lines (24 loc) · 850 Bytes
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
from setuptools import setup
long_description = open('README.rst').read()
setup(
name="django-googleauth",
version='2.0',
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="jcarbaugh@gmail.com",
license='BSD',
long_description=long_description,
platforms=["any"],
install_requires=["PyJWT==0.2.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",
],
)