Shuffle things around so that dist-utils can be used.
This commit is contained in:
parent
cbb78e7318
commit
023ad1b0fb
12 changed files with 30 additions and 7 deletions
15
setup.py
Normal file
15
setup.py
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
from distutils.core import setup
|
||||
import glob
|
||||
|
||||
setup(name='pungi',
|
||||
version='0.1.0',
|
||||
description='Distribution compose tool',
|
||||
author='Jesse Keating',
|
||||
author_email='jkeating@redhat.com',
|
||||
url='http://linux.duke.edu/projects/pungi',
|
||||
license='GPL',
|
||||
packages = ['pypungi'],
|
||||
scripts = ['pungi'],
|
||||
data_files=[('/etc/pungi', glob.glob('config/*'))]
|
||||
)
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue