diff options
author | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-03 23:37:03 +0200 |
---|---|---|
committer | René 'Necoro' Neumann <necoro@necoro.net> | 2008-07-03 23:37:03 +0200 |
commit | 72649c40b6278dbc29a595517fa11948d4df0532 (patch) | |
tree | e36529e3af2ac691a5bbf5dcac9512b285b24345 | |
parent | e42090a8bd7dcc5f9e7c6e41b0f44698588e6586 (diff) | |
download | portato-72649c40b6278dbc29a595517fa11948d4df0532.tar.gz portato-72649c40b6278dbc29a595517fa11948d4df0532.tar.bz2 portato-72649c40b6278dbc29a595517fa11948d4df0532.zip |
Updated setup.py to install the correct set of plugins
Diffstat (limited to '')
-rw-r--r-- | setup.py | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -17,14 +17,13 @@ from portato.constants import VERSION, DATA_DIR, ICON_DIR, PLUGIN_DIR, TEMPLATE_ def plugin_list (*args): """Creates a list of correct plugin pathes out of the arguments.""" - return [("plugins/%s.xml" % x) for x in args] + return [("plugins/%s.py" % x) for x in args] packages = ["portato", "portato.gui", "portato.gui.windows", "portato.plugins", "portato.backend", "portato.backend.portage"] data_files = [ (TEMPLATE_DIR, [os.path.join("portato/gui/templates",x) for x in os.listdir("portato/gui/templates") if x.endswith(".glade")]), (ICON_DIR, ["icons/portato-icon.png"]), -# (PLUGIN_DIR, plugin_list("dbus_init")), - (DATA_DIR, ["plugin.xsd"])] + (PLUGIN_DIR, plugin_list("gpytage", "notify", "etc_proposals"))] # do the distutils setup setup(name="Portato", |