From 5b1c4639f058d04a0089b3b323c8fad39c4a97a3 Mon Sep 17 00:00:00 2001 From: "Alex Xu (Hello71)" Date: Fri, 13 Aug 2021 17:03:28 -0400 Subject: accept command-line args --- config.py | 46 ---------------------------------------------- 1 file changed, 46 deletions(-) delete mode 100644 config.py (limited to 'config.py') diff --git a/config.py b/config.py deleted file mode 100644 index 6ee0c29..0000000 --- a/config.py +++ /dev/null @@ -1,46 +0,0 @@ -from fontTools.subset import Options - -config = { - # chrome or firefox - 'selenium_driver_name': 'chrome', - - # take screenshots before and after and check that they are identical - 'screenshots': True, - - # pyftsubset options, see pyftsubset --help - 'ftsubset_options': [ - '--desubroutinize', - '--layout-scripts=latn', - '--layout-features-=curs,dnom,frac,locl,mark,mkmk', - '--name-IDs=', - '--with-zopfli', - ], - - # font configuration table. - # family: no default, mandatory - # weight: must be string, mandatory - # fontfile: must be string, mandatory - # extratext: non-DOM text to add to subset (e.g. CSS content). default: none - # outfile: dict of {woff, woff2} output filenames. default: s/.[ot]tf$/.subset.woff(2)/ - 'fonts': [ - { - 'family': 'EB Garamond', - 'weight': '400', - 'style': 'italic', - 'fontfile': 'EBGaramond-Italic.otf', - 'extratext': '@' - }, - { - 'family': 'EB Garamond', - 'weight': '400', - 'style': 'normal', - 'fontfile': 'EBGaramond-Regular.otf' - }, - { - 'family': 'EB Garamond', - 'weight': '500', - 'style': 'normal', - 'fontfile': 'EBGaramond-Medium.otf' - } - ], -} -- cgit v1.2.3-54-g00ecf