mirror of
https://github.com/mtan93/cachet-url-monitor.git
synced 2026-03-07 21:21:58 +00:00
* #83 - Fixing the bug that was preventing the status update * #83 - Refactoring unit tests for configuration to ensure we catch more cases
22 lines
594 B
Python
22 lines
594 B
Python
#!/usr/bin/env python
|
|
#from distutils.core import setup
|
|
from setuptools import setup, find_packages
|
|
|
|
setup(name='cachet-url-monitor',
|
|
version='0.6.7',
|
|
description='Cachet URL monitor plugin',
|
|
author='Mitsuo Takaki',
|
|
author_email='mitsuotakaki@gmail.com',
|
|
url='https://github.com/mtakaki/cachet-url-monitor',
|
|
packages=find_packages(),
|
|
license='MIT',
|
|
requires=[
|
|
'requests',
|
|
'yaml',
|
|
'schedule',
|
|
'Click',
|
|
],
|
|
setup_requires=["pytest-runner"],
|
|
tests_require=["pytest", "requests-mock"]
|
|
)
|