move instancer tests to Tests/varLib/instancer directory create instancer/__main__.py to make package executable
6 lines
104 B
Python
6 lines
104 B
Python
import sys
|
|
from fontTools.varLib.instancer import main
|
|
|
|
if __name__ == "__main__":
|
|
sys.exit(main())
|