forked from scotch/engineauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·47 lines (42 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
# -*- coding: utf-8 -*-
"""
EngineAuth
==========
Quick links
-----------
- `User Guide <http://engineauth.appspot.com/>`_
- `Repository <https://github.com/scotch/engineauth>`_
- `Issue Tracker <https://github.com/scotch/engineauth/issues>`_
- `Wiki <https://github.com/scotch/engineauth/wiki>`_
"""
from setuptools import setup
setup(
name = 'EngineAuth',
version = '0.2.0',
license = 'Apache Software License',
url = 'http://engineauth.appspot.com',
description = "Google App Engine: Multi-Provider Authentication Simplified.",
long_description = __doc__,
author = 'Kyle Finley',
author_email = '[email protected]',
zip_safe = False,
platforms = 'any',
py_modules = [
'engineauth',
],
packages = [
'engineauth',
'engineauth.strategies',
],
include_package_data=True,
classifiers = [
'Development Status :: 5 - Production/Stable',
'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',
]
)