Skip to content

Commit

Permalink
Be more selective in installing data files
Browse files Browse the repository at this point in the history
  • Loading branch information
takluyver committed Sep 19, 2012
1 parent 2048929 commit 2387184
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions setup.py
Original file line number Original file line Diff line number Diff line change
@@ -1,5 +1,4 @@
from distutils.core import setup from distutils.core import setup
from glob import glob


from labyrinth_lib import __version__ from labyrinth_lib import __version__


Expand All @@ -11,7 +10,7 @@
url='http://people.gnome.org/~dscorgie/labyrinth.html', url='http://people.gnome.org/~dscorgie/labyrinth.html',
packages=['labyrinth_lib'], packages=['labyrinth_lib'],
scripts=['labyrinth'], scripts=['labyrinth'],
data_files=[('share/labyrinth', glob('data/*'))], data_files=[('share/labyrinth', ['data/labyrinth.glade', 'data/labyrinth-ui.xml'])],
requires=['PyGTK'], requires=['PyGTK'],
classifiers = [ classifiers = [
'Environment :: X11 Applications :: GTK', 'Environment :: X11 Applications :: GTK',
Expand Down

0 comments on commit 2387184

Please sign in to comment.