Files
cachet-url-monitor/setup.py
mtakaki a13a42d51c Multithreading #66 (#76)
* feat(multihreading): each url has it's own thread

* Fixing broken unit tests

* Improving readability when there are multiple URLs registerd and creating new action to upload metrics

* Improving error message when there's no file found

* Bumping the version

Co-authored-by: Alex Berenshtein <aberenshtein@yotpo.com>
2020-01-05 10:25:06 -08:00

21 lines
550 B
Python

#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup
setup(name='cachet-url-monitor',
version='0.6.0',
description='Cachet URL monitor plugin',
author='Mitsuo Takaki',
author_email='mitsuotakaki@gmail.com',
url='https://github.com/mtakaki/cachet-url-monitor',
packages=['cachet_url_monitor'],
license='MIT',
requires=[
'requests',
'yaml',
'schedule',
],
setup_requires=["pytest-runner"],
tests_require=["pytest"]
)