OpenSecurity/install/web.py-0.37/setup.py
changeset 3 65432e6c6042
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/OpenSecurity/install/web.py-0.37/setup.py	Mon Dec 02 14:02:05 2013 +0100
     1.3 @@ -0,0 +1,20 @@
     1.4 +#!/usr/bin/env python
     1.5 +
     1.6 +# ...
     1.7 +
     1.8 +from distutils.core import setup
     1.9 +from web import __version__
    1.10 +
    1.11 +setup(name='web.py',
    1.12 +      version=__version__,
    1.13 +      description='web.py: makes web apps',
    1.14 +      author='Aaron Swartz',
    1.15 +      author_email='me@aaronsw.com',
    1.16 +      maintainer='Anand Chitipothu',
    1.17 +      maintainer_email='anandology@gmail.com',
    1.18 +      url=' http://webpy.org/',
    1.19 +      packages=['web', 'web.wsgiserver', 'web.contrib'],
    1.20 +      long_description="Think about the ideal way to write a web app. Write the code to make it happen.",
    1.21 +      license="Public domain",
    1.22 +      platforms=["any"],
    1.23 +     )