From e8868d63c39db975c8627c7fc87dfdd4f2308bf6 Mon Sep 17 00:00:00 2001 From: necoro <> Date: Tue, 24 Apr 2007 15:34:07 +0000 Subject: moved *.glade and *.ui to one directory to omit the change of the config.py each time --- setup.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 8fe3bb0..2e294fc 100644 --- a/setup.py +++ b/setup.py @@ -12,16 +12,18 @@ cmdclass = {} if "gtk" in FRONTENDS: packages.append("portato.gui.gtk") - data_files.append((DATA_DIR, ["portato/gui/gtk/glade/portato.glade"])) + data_files.append((DATA_DIR, ["portato/gui/templates/portato.glade"])) if "qt" in FRONTENDS: packages.append("portato.gui.qt") - data_files.append((os.path.join(DATA_DIR,"ui"), [os.path.join("portato/gui/qt/ui",x) for x in os.listdir("portato/gui/qt/ui/") if x.endswith(".ui")])) + data_files.append((os.path.join(DATA_DIR,"ui"), [os.path.join("portato/gui/templates/ui",x) for x in os.listdir("portato/gui/templates/ui/") if x.endswith(".ui")])) setup(name="Portato", version = VERSION, - author = "René 'Necoro' Neumann", + description = "Frontends to Portage", license = "GPLv2", + url = "http://portato.sourceforge.net/", + author = "René 'Necoro' Neumann", author_email = "necoro@necoro.net", packages = packages, data_files = data_files, -- cgit v1.2.3