lorax/setup.py

48 lines
1.3 KiB
Python
Raw Normal View History

#!/usr/bin/python2
2010-02-23 13:20:05 +00:00
from distutils.core import setup
import os
import sys
2010-10-12 16:23:29 +00:00
# config file
data_files = [("/etc/lorax", ["etc/lorax.conf"]),
("/usr/lib/tmpfiles.d/", ["systemd/lorax.conf"])]
2010-10-12 16:23:29 +00:00
# shared files
for root, dnames, fnames in os.walk("share"):
for fname in fnames:
data_files.append((root.replace("share", "/usr/share/lorax", 1),
[os.path.join(root, fname)]))
# executable
2011-12-16 23:48:02 +00:00
data_files.append(("/usr/sbin", ["src/sbin/lorax", "src/sbin/mkefiboot",
"src/sbin/livemedia-creator", "src/sbin/mkksiso"]))
data_files.append(("/usr/bin", ["src/bin/image-minimizer"]))
# get the version
sys.path.insert(0, "src")
try:
import pylorax.version
except ImportError:
vernum = "devel"
else:
vernum = pylorax.version.num
finally:
sys.path = sys.path[1:]
2010-02-23 13:20:05 +00:00
setup(name="lorax",
version=vernum,
2010-02-23 13:20:05 +00:00
description="Lorax",
long_description="Tools for creating bootable images, including the Anaconda boot.iso",
author="Martin Gracik, Will Woods <wwoods@redhat.com>, Brian C. Lane <bcl@redhat.com>",
author_email="bcl@redhat.com",
url="http://www.github.com/weldr/lorax/",
download_url="http://www.github.com/weldr/lorax/releases/",
2010-02-23 13:20:05 +00:00
license="GPLv2+",
packages=["pylorax"],
2010-02-23 13:20:05 +00:00
package_dir={"" : "src"},
data_files=data_files
)