forked from moraes/webapp-improved
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·39 lines (36 loc) · 1.17 KB
/
setup.py
File metadata and controls
executable file
·39 lines (36 loc) · 1.17 KB
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
# -*- coding: utf-8 -*-
"""
webapp2
~~~~~~~
This is an attempt to improve Google App Engine's
`webapp <http://code.google.com/appengine/docs/python/tools/webapp/>`_
framework keeping maximum compatibility and same performance.
Features overview: http://code.google.com/p/webapp-improved/
"""
from setuptools import setup
setup(
name = 'webapp2',
version = '1.3',
license = 'Apache Software License',
url = 'http://www.tipfy.org/',
description = "Taking Google App Engine's webapp to the next level!",
long_description = __doc__,
author = 'Rodrigo Moraes',
author_email = 'rodrigo.moraes@gmail.com',
zip_safe = False,
platforms = 'any',
packages = [
'webapp2',
'webapp2_extras',
],
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',
]
)