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
om@3
     1
#!/usr/bin/env python
om@3
     2
om@3
     3
# ...
om@3
     4
om@3
     5
from distutils.core import setup
om@3
     6
from web import __version__
om@3
     7
om@3
     8
setup(name='web.py',
om@3
     9
      version=__version__,
om@3
    10
      description='web.py: makes web apps',
om@3
    11
      author='Aaron Swartz',
om@3
    12
      author_email='me@aaronsw.com',
om@3
    13
      maintainer='Anand Chitipothu',
om@3
    14
      maintainer_email='anandology@gmail.com',
om@3
    15
      url=' http://webpy.org/',
om@3
    16
      packages=['web', 'web.wsgiserver', 'web.contrib'],
om@3
    17
      long_description="Think about the ideal way to write a web app. Write the code to make it happen.",
om@3
    18
      license="Public domain",
om@3
    19
      platforms=["any"],
om@3
    20
     )