From bbca1d6b3875df82af3b2c11b57efef2fb8e319d Mon Sep 17 00:00:00 2001 From: Mike Crute Date: Mon, 18 May 2015 20:22:56 -0700 Subject: Initial import --- setup.py | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 setup.py (limited to 'setup.py') diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..d9963bd --- /dev/null +++ b/setup.py @@ -0,0 +1,42 @@ +from setuptools import setup, find_packages + +setup( + name="CruteMoinModernizedTheme", + version="1.0", + description="", + author="Michael Crute ", + license="MIT", + packages=find_packages(), + entry_points={ +# "moin.plugins.action": [ +# ], +# "moin.plugins.converter": [ +# ], +# "moin.plugins.events": [ +# ], +# "moin.plugins.filter": [ +# ], +# "moin.plugins.formatter": [ +# ], +# "moin.plugins.macro": [ +# ], +# "moin.plugins.parser": [ +# ], + "moin.plugins.theme": [ + "crute_modernized = mcrute_theme.crute_modernized:Theme", + ], +# "moin.plugins.userprefs": [ +# ], +# "moin.plugins.xmlrpc": [ +# ], + }, + data_files=[ + ("static", ( + "static/dnd-upload.js", + "static/favicon.ico", + "static/iphone-icon.png", + "static/logo.png", + "static/mcrute.css", + )), + ] +) -- cgit v1.2.3