2013-04-30 | Paul Boddie | raw annotate files changeset graph | Removed confusing version information. |
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.3", 12 py_modules = ["ContentTypeSupport", "DateSupport", "GeneralSupport", 13 "ItemSupport", "LocationSupport", "MoinDateSupport", 14 "MoinRemoteSupport", "MoinSupport", "ViewSupport"] 15 )