1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#!/usr/bin/python
import sys
from distutils.core import setup, Extension
import string
VERSION = "0.2.5"
SHORT_DESC = "Network provisioning tool for Virtualized Images and Existing Non-Bare Metal"
LONG_DESC = """
koan stands for "kickstart-over-a-network" and allows for both
network provisioning of new virtualized guests and destructive provisioning of
any existing system. For use with a boot-server configured with
'cobbler'.
"""
if __name__ == "__main__":
docspath="share/doc/koan-%s/" % VERSION
manpath="share/man/man1/"
setup(
name="koan",
version = VERSION,
author = "Michael DeHaan",
author_email = "mdehaan@redhat.com",
url = "http://cobbler.et.redhat.com/",
license = "GPL",
packages = ["koan","koan/yaml"],
scripts = ["koan/koan"],
data_files = [
(manpath, ['koan.1.gz']),
],
description = SHORT_DESC,
long_description = LONG_DESC
)
|