aboutsummaryrefslogtreecommitdiffstats
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-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)