diff --git a/.gitignore b/.gitignore index 9b369ae..f3396cc 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,5 @@ share/ .cache .coverage *.egg-info +MANIFEST +dist/ diff --git a/setup.py b/setup.py index 8b61fc6..5cd0fff 100644 --- a/setup.py +++ b/setup.py @@ -8,4 +8,10 @@ setup(name='cachet-url-monitor', author_email='mitsuotakaki@gmail.com', url='https://github.com/mtakaki/cachet-url-monitor', packages=['cachet_url_monitor'], + license='MIT', + requires=[ + 'requests', + 'yaml', + 'schedule', + ] )