summaryrefslogtreecommitdiffstats
path: root/setup.py
blob: 74eb0a0da07aa081c80bec0a6ad1d09a503ce06d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/env python2

from distutils.core import setup
import commands, sys

version = "0.01"

setup(name="libactio",
      version=version,
      description="Simple framework for executing actions on certain log events",
      author="David Sommerseth",
      author_email="dazo@users.sourceforge.net",
      url="",
      license="GPLv2 only",
      packages=["LogActio", "LogActio.Reporters"],
      scripts=["logactio"]
)