from ee.kicad.doit import KicadDoitTasks prj = "demo" sch = "{}.sch".format(prj) kicad_pcb = "{}.kicad_pcb".format(prj) DOIT_CONFIG = {'check_file_uptodate': 'timestamp'} def task_kicad(): args = { "sch": sch, "kicad_pcb": kicad_pcb, "gerber_dir": "gerber", "data_set_dir": "ee", } for t in KicadDoitTasks(**args).tasks(): yield t