-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (38 loc) · 1.25 KB
/
setup.py
File metadata and controls
43 lines (38 loc) · 1.25 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
40
41
42
"""
whirly
=====
whirly is a framework wrapper for the scalable, non-blocking web server tornado,
which provided an extension system to enhance the use of tornado web server.
Whirly is compatible with Google App Engine in WSGI mode.
Already provided extensions:
* Session
* Storage (MySQL, PostgreSQL, SQLite, MongoDB, Datastore, Redis)
* Auth
* Cache
* Flash Message
* Support different template engines
"""
from setuptools import setup, find_packages
setup(
name='whirly',
version='0.1',
url='https://github.com/yuanhao/Whirly',
license='Apache Software License',
author='Yuanhao Li',
author_email='yuanhao.li [at] gmail [dot] com',
description='A framework wrapper for the scalable, non-blocking web server tornado.',
long_description=__doc__,
zip_safe=False,
platforms='any',
classifiers=[
'Development Status :: 3 - 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'
],
packages=['whirly']
)