Files
cachet-url-monitor/setup.py
mtakaki 10e0141454 Upgrading to python3 (#60)
* Migrating to python 3.7.2, but docker image is not working properly.

Need to continue investigating why it's not properly running.

* Trying to fix the build and fixing logging in the scheduler initialization.

* Trying to fix the build

* Collecting test results

* Fixing the dockerfile

* Updating the development dependencies
2019-02-22 02:17:13 -08:00

21 lines
548 B
Python

#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup
setup(name='cachet-url-monitor',
version='1.4',
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"]
)