6feda08320
of the comps. Filter it and make use of it when creating repos. - Move _doRunCommand into pypungi/__init__.py so that it can be easily used by all modules. Also pass in a logger for correct logging - Quiet down creatrepo calls
16 lines
456 B
Python
16 lines
456 B
Python
from distutils.core import setup
|
|
import glob
|
|
|
|
setup(name='pungi',
|
|
version='0.5.0',
|
|
description='Distribution compose tool',
|
|
author='Jesse Keating',
|
|
author_email='jkeating@redhat.com',
|
|
url='http://hosted.fedoraproject.org/projects/pungi',
|
|
license='GPL',
|
|
packages = ['pypungi'],
|
|
scripts = ['pungi'],
|
|
data_files=[('/etc/pungi', glob.glob('config/*')), ('/usr/share/pungi', glob.glob('share/*'))]
|
|
)
|
|
|