diff --git a/setup.py b/setup.py index 280bc2a..5cfab80 100644 --- a/setup.py +++ b/setup.py @@ -1,4 +1,5 @@ import os.path +import os from setuptools import setup, Extension filename = os.path.join(os.path.dirname(__file__), 'description.rst') @@ -7,7 +8,7 @@ rsamodule = Extension('ucam_webauth.rsa', sources=['ucam_webauth/rsa.c'], - libraries=["ssl", "crypto"]) + libraries=["ssl", "crypto"] if os.name != 'nt' else ["libeay32"]) setup( name = "python-raven",