16 lines
453 B
Python
16 lines
453 B
Python
from distutils.core import setup
|
|
import glob
|
|
|
|
setup(name='lorax',
|
|
version='0.1',
|
|
description='Boot image build tool',
|
|
author='David Cantrell',
|
|
author_email='dcantrell@redhat.com',
|
|
license='GPLv2+',
|
|
package_dir = {'': 'src'},
|
|
packages = ['pylorax'],
|
|
scripts = ['src/bin/lorax'],
|
|
data_files = [('/usr/share/lorax', glob.glob('share/*')),
|
|
('/etc/lorax', glob.glob('etc/*'))]
|
|
)
|