aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2015-12-24 16:17:00 -0800
committerTeddy Wing2015-12-24 16:17:00 -0800
commit97f5f1f033833b477f7f38d89bdfcfce84b04291 (patch)
tree9b5cc61b8090b11142b1d2f96a65cb303b651fc7
parentc59baae4c7b7ce3136c10078605f37de9494ad56 (diff)
downloadRoboFont-Equalize-Sidebearings-Key-97f5f1f033833b477f7f38d89bdfcfce84b04291.tar.bz2
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.
-rw-r--r--build.py20
1 files changed, 0 insertions, 20 deletions
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)