moved build scripts into install folder (#181)

This commit is contained in:
Micah Lee 2015-05-15 13:03:04 -07:00
parent 669750be37
commit 245ddd0300
18 changed files with 29 additions and 21 deletions

View file

@ -64,8 +64,8 @@ setup(
include_package_data=True,
scripts=['bin/onionshare', 'bin/onionshare-gui'],
data_files=[
(os.path.join(sys.prefix, 'share/applications'), ['setup/onionshare.desktop']),
(os.path.join(sys.prefix, 'share/pixmaps'), ['setup/onionshare80.xpm']),
(os.path.join(sys.prefix, 'share/applications'), ['install/onionshare.desktop']),
(os.path.join(sys.prefix, 'share/pixmaps'), ['install/onionshare80.xpm']),
(os.path.join(sys.prefix, 'share/onionshare/images'), [
'images/logo.png',
'images/drop_files.png',
@ -88,4 +88,3 @@ setup(
])
]
)