Description: Patch to fix installation of data files in setup.py Author: Kartik Mistry --- a/setup.py +++ b/setup.py @@ -51,11 +51,6 @@ description = 'PyRoom is a distraction-free, fullscreen text editor', packages = ['PyRoom',], package_data = {'PyRoom':['interface.glade']}, - data_files = [ - ('/usr/share/pyroom/themes', glob.glob('themes/*.theme')), - ('/usr/share/pyroom', ['pyroom.png']), - ('/usr/share/applications', ['pyroom.desktop']) - ], scripts=['pyroom',], cmdclass={'install_data': InstallData}, )