2012-11-25 | Paul Boddie | raw annotate files changeset graph | Handle fragments without any real 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 = ["DateSupport", "GeneralSupport", "LocationSupport", 13 "MoinDateSupport", "MoinRemoteSupport", "MoinSupport", 14 "ViewSupport"] 15 )