diff options
author | necoro <> | 2007-04-24 20:29:01 +0000 |
---|---|---|
committer | necoro <> | 2007-04-24 20:29:01 +0000 |
commit | ab48eaca8fc9ffc34daa7d3687b249b7fe37a12e (patch) | |
tree | 04561059eab2717e575c30ce25e43a99dc5f8aad | |
parent | 9cb2b747090990fc2301c6b64ef521892ab2644f (diff) | |
download | portato-ab48eaca8fc9ffc34daa7d3687b249b7fe37a12e.tar.gz portato-ab48eaca8fc9ffc34daa7d3687b249b7fe37a12e.tar.bz2 portato-ab48eaca8fc9ffc34daa7d3687b249b7fe37a12e.zip |
add application icon and desktop file
Diffstat (limited to '')
-rw-r--r-- | setup.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -3,11 +3,11 @@ import os, os.path from distutils.core import setup, Extension -from portato.constants import VERSION, DATA_DIR, FRONTENDS +from portato.constants import VERSION, DATA_DIR, FRONTENDS, ICON_DIR packages = ["portato", "portato.gui", "portato.plugins", "portato.backend", "portato.backend.portage"] ext_modules = [] -data_files = [] +data_files = [(ICON_DIR, ["icons/portato-icon.png"])] cmdclass = {} if "gtk" in FRONTENDS: |