OpenSecurity/install/web.py-0.37/setup.py
author om
Mon, 02 Dec 2013 14:02:05 +0100
changeset 3 65432e6c6042
permissions -rwxr-xr-x
initial deployment and project layout commit
     1 #!/usr/bin/env python
     2 
     3 # ...
     4 
     5 from distutils.core import setup
     6 from web import __version__
     7 
     8 setup(name='web.py',
     9       version=__version__,
    10       description='web.py: makes web apps',
    11       author='Aaron Swartz',
    12       author_email='me@aaronsw.com',
    13       maintainer='Anand Chitipothu',
    14       maintainer_email='anandology@gmail.com',
    15       url=' http://webpy.org/',
    16       packages=['web', 'web.wsgiserver', 'web.contrib'],
    17       long_description="Think about the ideal way to write a web app. Write the code to make it happen.",
    18       license="Public domain",
    19       platforms=["any"],
    20      )