From b5d87bef681aa277a2143172eeff7535f5923df6 Mon Sep 17 00:00:00 2001 From: Mitsuo Takaki Date: Mon, 2 May 2016 22:27:29 -0700 Subject: [PATCH] Fixing the setup.py to add the requirements and ignoring distribution folders --- .gitignore | 2 ++ setup.py | 6 ++++++ 2 files changed, 8 insertions(+) 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', + ] )