From c29660706f6775b0d789b5582b181e5ba1f049f5 Mon Sep 17 00:00:00 2001 From: Eric Wieser Date: Sun, 14 Sep 2014 15:27:43 +0100 Subject: [PATCH] Make this thing build on windows --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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",