root/trunk/setup.py

Revision 314, 299 bytes (checked in by matt, 1 month ago)

Damn, forgot to update the version.

Line 
1 from setuptools import setup, find_packages
2
3 setup(
4     name='formal',
5     version='0.20.0',
6     description='HTML forms framework for Nevow',
7     author='Matt Goodall',
8     author_email='matt@pollenation.net',
9     packages=find_packages(),
10     include_package_data=True,
11     zip_safe = True,
12     )
Note: See TracBrowser for help on using the browser.