From 9c12d7613f00758e2873cae9c7e44551eb68509f Mon Sep 17 00:00:00 2001 From: Anthony Sottile Date: Wed, 20 Sep 2017 11:43:28 -0700 Subject: [PATCH] Introduce pysassc (will be migrated to) --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index bac09236..978f63a9 100644 --- a/setup.py +++ b/setup.py @@ -230,7 +230,9 @@ def run(self): 'sass_manifests = sassutils.distutils:validate_manifests' ], 'console_scripts': [ - ['sassc = sassc:main'] + ['pysassc = sassc:main'], + # TODO: deprecate `sassc` and remove (#134) + ['sassc = sassc:main'], ] }, install_requires=install_requires,