1
0
mirror of https://gitlab.com/fdroid/fdroidserver.git synced 2024-07-07 01:40:10 +02:00

install sample config files in a standard location

This means they'll automatically be installed in the right place by the
packaging processes of various UNIX distros, and then that makes it easy
for the upcoming 'fdroid init' to find them.
This commit is contained in:
Hans-Christoph Steiner 2013-11-01 15:09:16 -04:00
parent a8810b809a
commit 94342ee43c

View File

@ -11,6 +11,11 @@ setup(name='FDroidServer',
url='http://f-droid.org',
packages=['fdroidserver'],
scripts=['fdroid'],
data_files=[
('share/doc/fdroidserver/examples',
['config.buildserver.py', 'config.sample.py', 'makebs.config.sample.py',
'fdroid-icon.png']),
],
install_requires=[
'python-magic',
'PIL',