From fcaaf7f7c977e553c9cf771c70ef262b23bbc419 Mon Sep 17 00:00:00 2001 From: "Eevee (Alex Munroe)" Date: Mon, 16 Sep 2013 12:47:58 -0700 Subject: Fix setup.py requiring `six` just to import. #204 --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'setup.py') diff --git a/setup.py b/setup.py index 85de7db..1c22133 100644 --- a/setup.py +++ b/setup.py @@ -2,10 +2,14 @@ import os import sys from setuptools import setup, Extension, Feature +from setuptools.dist import Distribution from distutils.command.build_ext import build_ext from distutils.errors import CCompilerError, DistutilsExecError, \ DistutilsPlatformError +# Need to install `six` to be able to import from the scss namespace +Distribution(dict(setup_requires='six')) + from scss.scss_meta import PROJECT, URL, VERSION, AUTHOR, AUTHOR_EMAIL, LICENSE, DOWNLOAD_URL # fail safe compilation shamelessly stolen from the simplejson -- cgit v1.2.1