17 lines
468 B
Python
17 lines
468 B
Python
from distutils.core import setup
|
|
import glob
|
|
|
|
setup(name='pungi',
|
|
version='2.0.12',
|
|
description='Distribution compose tool',
|
|
author='Jesse Keating',
|
|
author_email='jkeating@redhat.com',
|
|
url='http://fedorahosted.org/pungi',
|
|
license='GPLv2',
|
|
package_dir = {'': 'src'},
|
|
packages = ['pypungi'],
|
|
scripts = ['src/bin/pungi.py', 'src/bin/pkgorder'],
|
|
data_files=[('/usr/share/pungi', glob.glob('share/*'))]
|
|
)
|
|
|