From 97f5f1f033833b477f7f38d89bdfcfce84b04291 Mon Sep 17 00:00:00 2001 From: Teddy Wing Date: Thu, 24 Dec 2015 16:17:00 -0800 Subject: Remove build.py Now that we're building with a shell script, this Python builder is no longer necessary. All the more so because it doesn't work in its current state. --- build.py | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 build.py diff --git a/build.py b/build.py deleted file mode 100644 index 09c8c69..0000000 --- a/build.py +++ /dev/null @@ -1,20 +0,0 @@ -import os -from mojo.extensions import ExtensionBundle - -extension_filename = 'Equalize Sidebearings.roboFontExt' -extension_path = os.path.join(os.path.dirname(__file__), 'dist', extension_filename) - -b = ExtensionBundle() -b.name = 'Equalize Sidebearings' -b.developer = 'Teddy Wing' -b.version = '0.0.1' -b.mainScript = 'equalize_sidebearings.py' -b.launchAtStartup = True -b.addToMenu = [ - { - 'path': 'preferences.py', - 'preferredName': 'Preferences', - }, -] - -b.save(extension_path) -- cgit v1.2.3