From 6c0cc75858ea8413b53f451b03fd7a613b070068 Mon Sep 17 00:00:00 2001 From: Jon Betts Date: Wed, 11 Oct 2017 17:39:17 +0100 Subject: [PATCH] TLS-107 - Correcting the script paths * Also marked as non-zip safe to be safe * This is because get_compiler_script() uses path concatentation --- MANIFEST.in | 2 +- setup.py | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index 07e0d99..676241f 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,3 +1,3 @@ include LICENSE include README.rst -include coffeescript/coffee-script.js \ No newline at end of file +include coffeescript/coffeescript.js \ No newline at end of file diff --git a/setup.py b/setup.py index 2dc62c2..478da8b 100755 --- a/setup.py +++ b/setup.py @@ -16,8 +16,9 @@ packages=['coffeescript'], package_dir={'coffeescript': 'coffeescript'}, package_data={ - 'coffeescript': ['coffee-script.js'], + 'coffeescript': ['coffeescript.js'], }, + zip_safe=False, long_description=long_description, url='https://github.com/doloopwhile/Python-CoffeeScript',