diff --git a/setup.py b/setup.py index 3011c9e..d6a1d64 100755 --- a/setup.py +++ b/setup.py @@ -57,7 +57,8 @@ class Install(install): for filename in sorted(filenames): if filename.endswith(".hy"): importlib.import_module( - dirpath.replace("/", ".") + "." + filename[:-len(".hy")]) + dirpath.replace("/", ".").replace("\\", ".") + + "." + filename[:-len(".hy")]) install.run(self) install_requires = ['rply>=0.7.0', 'astor>=0.5', 'clint>=0.4']