2013-01-19 | Paul Boddie | raw annotate files changeset graph | Removed legacy method invocation when writing content. |
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 = ["ContentTypeSupport", "DateSupport", "GeneralSupport", 13 "LocationSupport", "MoinDateSupport", "MoinRemoteSupport", 14 "MoinSupport", "ViewSupport"] 15 )