aboutsummaryrefslogtreecommitdiffstats
path: root/build.py
diff options
context:
space:
mode:
Diffstat (limited to 'build.py')
-rw-r--r--build.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/build.py b/build.py
new file mode 100644
index 0000000..09c8c69
--- /dev/null
+++ b/build.py
@@ -0,0 +1,20 @@
+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)