mirror of
https://github.com/mtan93/cachet-url-monitor.git
synced 2026-03-08 05:31:58 +00:00
18 lines
449 B
Python
18 lines
449 B
Python
#!/usr/bin/env python
|
|
from distutils.core import setup
|
|
|
|
setup(name='cachet-url-monitor',
|
|
version='0.1',
|
|
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',
|
|
]
|
|
)
|