-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·49 lines (44 loc) · 1.28 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
41
42
43
44
45
46
47
48
49
# -*- coding: utf-8 -*-
"""
aeauth
==========
Quick links
-----------
- `User Guide <http://code.scotchmedia.com/aeauth>`_
- `Repository <http://github.com/scotch/aeauth>`_
- `Issue Tracker <https://github.com/scotch/aeauth/issues>`_
"""
from setuptools import setup
setup(
name = 'aeauth',
version = '0.1.0',
license = 'Apache Software License',
url = 'http://code.scotchmedia.com/aeauth',
description = "Adds Multi-Provider Authentication to Google App Engine",
long_description = __doc__,
author = 'Kyle Finley',
author_email = '[email protected]',
zip_safe = True,
platforms = 'any',
packages = [
'aeauth',
'aeauth.strategies',
],
include_package_data=True,
install_requires=[
'setuptools',
'aecore',
'python-gflags',
'google-api-python-client',
],
classifiers = [
'Development Status :: 2 - Pre-Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)