From 1299312c80e06895d1f26228dc4ec8dd2990cfb6 Mon Sep 17 00:00:00 2001 From: Jonathan Michalon Date: Sun, 24 Aug 2014 19:01:18 +0200 Subject: [PATCH] Provide a setup.py script --- setup.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100755 setup.py diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..86fa384 --- /dev/null +++ b/setup.py @@ -0,0 +1,14 @@ +#!/usr/bin/env python3 + +from distutils.core import setup + +setup(name='Picomon', + version='0.1', + description='Picomon is a very small and minimal alerting tool', + author='Jonathan Michalon', + license='GNU GPLv3', + url='http://gitlab.netlib.re/arn/picomon/', + packages=['picomon', 'picomon.subprocess_compat'], + scripts=['bin/picomon', 'bin/picomon-watchdog'], + data_files=[('etc/picomon/', ['config-sample.py'])], + ) -- GitLab