blob: 09c8c695d5a27effaaa84c6738ab882866c2e8b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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)
|