lorax/setup.py

32 lines
849 B
Python
Raw Normal View History

2010-02-23 13:20:05 +00:00
#! /usr/bin/env python
2010-02-23 13:20:05 +00:00
from distutils.core import setup
from glob import glob
import os
2010-02-23 13:20:05 +00:00
data_files = [("/etc/lorax", glob("etc/config.*")),
("/etc/lorax", ["etc/ignore_errors"]),
("/etc/lorax/templates", glob("etc/templates/*"))
]
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)]))
2010-02-23 13:20:05 +00:00
setup(name="lorax",
version="0.1",
description="Lorax",
long_description="",
author="Martin Gracik",
author_email="mgracik@redhat.com",
url="http://",
download_url="http://",
license="GPLv2+",
packages=["pylorax"],
package_dir={"" : "src"},
scripts=["src/bin/lorax"],
data_files=data_files
)