From a1e180d495c7a1f47131e3d1ed7c5bdb512bb531 Mon Sep 17 00:00:00 2001 From: Thomas Hickman Date: Fri, 8 Apr 2016 21:38:13 +0100 Subject: [PATCH] Added pypiwin32 as a dependency This package uses pypiwin32 as a dependency and doesn't list it on the setup.py, so now running this without pypiwin32 being installed results in an `ImportError`. --- setup.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/setup.py b/setup.py index 406f3f4..ad9bdfe 100644 --- a/setup.py +++ b/setup.py @@ -7,5 +7,8 @@ author = "Luke McCarthy", author_email = "luke@iogopro.co.uk", url = "http://github.com/shaurz/fsmonitor", + install_requires=[ + 'pypiwin32', + ], packages = ["fsmonitor"], )