-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (24 loc) · 869 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
import os
from setuptools import find_packages, setup
#
# with open(os.path.join(os.path.dirname(__file__), 'README.rst')) as readme:
# README = readme.read()
#
# # allow setup.py to be run from any path
# os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name="django-agol-oauth2",
version="0.0.4",
author="Travis Bock",
author_email="[email protected]",
license="MIT",
description="Provide oauth2 agol login functionality to django projects",
url="https://github.com/Innovate-Inc/django-agol-oauth2",
packages=['agol_oauth2', 'agol_oauth2.migrations'],
install_requires=['django-localflavor', 'social-auth-app-django', 'requests'],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
],
include_package_data=True
)