You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qubes-installer-qubes-os/setup.py

16 lines
619 B

#!/usr/bin/python2
from distutils.core import setup
from glob import *
setup(name='firstboot', version='1.110',
description='Post-installation configuration utility',
author='Chris Lumens', author_email='clumens@redhat.com',
url='http://fedoraproject.org/wiki/FirstBoot',
data_files=[('/usr/sbin', ['progs/firstboot']),
('/etc/rc.d/init.d', ['init/firstboot']),
('/usr/share/firstboot/themes/default', glob('themes/default/*.png')),
('/usr/share/firstboot/modules', glob('modules/*.py')),
],
packages=['firstboot'])