mirror of
https://github.com/mtan93/cachet-url-monitor.git
synced 2026-03-08 05:31:58 +00:00
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
This commit is contained in:
11
setup.py
11
setup.py
@@ -1,8 +1,9 @@
|
||||
#!/usr/bin/env python
|
||||
from distutils.core import setup
|
||||
#from distutils.core import setup
|
||||
from setuptools import setup
|
||||
|
||||
setup(name='cachet-url-monitor',
|
||||
version='0.4',
|
||||
version='1.4',
|
||||
description='Cachet URL monitor plugin',
|
||||
author='Mitsuo Takaki',
|
||||
author_email='mitsuotakaki@gmail.com',
|
||||
@@ -13,5 +14,7 @@ setup(name='cachet-url-monitor',
|
||||
'requests',
|
||||
'yaml',
|
||||
'schedule',
|
||||
]
|
||||
)
|
||||
],
|
||||
setup_requires=["pytest-runner"],
|
||||
tests_require=["pytest"]
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user