summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: e8cb2ed8cafbb3b880581b1556249f94f51c98de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/python2

from distutils.sysconfig import get_python_lib
from distutils.core import setup
from os.path import join
import commands, sys

# Get PYTHONLIB with no prefix so --prefix installs work.
PYTHONLIB = join(get_python_lib(standard_lib=1, prefix=''), 'site-packages')

version = "0.01"

setup(name="logactio",
      version=version,
      description="Simple framework for executing actions on certain log events",
      author="David Sommerseth",
      author_email="dazo@users.sourceforge.net",
      url="http://fedorapeople.org/cgit/dsommers/public_git/logactio.git/",
      license="GPLv2 only",
      packages=["LogActio", "LogActio.Reporters"],
      scripts=["logactio"]
)