public
Description: web.py is a web framework for python that is as simple as it is powerful.
Homepage: http://webpy.org
Clone URL: git://github.com/webpy/webpy.git
webpy / setup.py
100644 20 lines (16 sloc) 0.559 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env python
 
# ...
 
from distutils.core import setup
 
setup(name='web.py',
      version='0.33',
      description='web.py: makes web apps',
      author='Aaron Swartz',
      author_email='me@aaronsw.com',
      maintainer='Anand Chitipothu',
      maintainer_email='anandology@gmail.com',
      url=' http://webpy.org/',
      packages=['web', 'web.wsgiserver', 'web.contrib'],
      long_description="Think about the ideal way to write a web app. Write the code to make it happen.",
      license="Public domain",
      platforms=["any"],
     )