huangcm
2025-07-01 676035278781360996553c427a12bf358249ebf7
1
2
3
4
5
6
7
8
9
10
11
12
#!/usr/bin/env python
from __future__ import print_function, division, absolute_import
import sys
import os.path
 
libdir = os.path.join(os.path.dirname(os.path.realpath(__file__)), 'Lib')
sys.path.insert(0, libdir)
 
from fontTools.__main__ import main
 
if __name__ == '__main__':
   sys.exit(main())