python-esmonitor/setup.py

14 lines
454 B
Python
Raw Normal View History

2015-12-06 22:41:51 -08:00
#!/usr/bin/env python3
from setuptools import setup
from pymonitor import __version__
2015-12-06 22:41:51 -08:00
setup(name='pymonitor',
version=__version__,
description='python daemon for logging system metrics to elasticsearch db',
url='http://gitlab.xmopx.net/dave/python-esmonitor',
author='dpedu',
author_email='dave@davepedu.com',
packages=['pymonitor', 'pymonitor.builtins', 'pymonitor.monitors'],
scripts=['bin/pymonitor'],
zip_safe=False)