MoinSupport

setup.py

32:2bd2ac851c90
2012-11-29 Paul Boddie Added a separate function for getting the properties of individual text regions. Added an items method to the form dictionary wrapper class.
     1 #! /usr/bin/env python     2      3 from distutils.core import setup     4      5 setup(     6     name         = "MoinSupport",     7     description  = "Support libraries for MoinMoin extensions",     8     author       = "Paul Boddie",     9     author_email = "paul@boddie.org.uk",    10     url          = "http://hgweb.boddie.org.uk/MoinSupport",    11     version      = "0.2",    12     py_modules   = ["DateSupport", "GeneralSupport", "LocationSupport",    13                     "MoinDateSupport", "MoinRemoteSupport", "MoinSupport",    14                     "ViewSupport"]    15     )