commit 3633690b34d2526a9da3ed774deb0caa00aef101 Author: Vaydheesh Date: Sat Apr 6 01:02:03 2019 +0530 Fix: Windows Installation Check diff --git a/setup.py b/setup.py index 28fd4e7..47f5ca9 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,7 @@ from setuptools import setup from setuptools.command.install import install from atexit import register +from platform import system import installation @@ -11,7 +12,8 @@ class PostInstallCommand(install): @staticmethod def _post_install(): - installation.main() + if system() == 'Windows': + installation.main() setup(