2021-09-05 08:20:03 +00:00
|
|
|
/*-*- mode:c;indent-tabs-mode:nil;c-basic-offset:4;tab-width:8;coding:utf-8 -*-│
|
|
|
|
│vi: set net ft=c ts=4 sts=4 sw=4 fenc=utf-8 :vi│
|
|
|
|
╞══════════════════════════════════════════════════════════════════════════════╡
|
|
|
|
│ Python 3 │
|
|
|
|
│ https://docs.python.org/3/license.html │
|
|
|
|
╚─────────────────────────────────────────────────────────────────────────────*/
|
|
|
|
#include "third_party/python/Include/yoink.h"
|
2022-05-18 23:41:29 +00:00
|
|
|
#include "third_party/python/runpythonmodule.h"
|
2022-05-12 18:01:58 +00:00
|
|
|
#include "tool/args/args.h"
|
2022-05-18 23:41:29 +00:00
|
|
|
// clang-format off
|
2021-09-13 04:04:44 +00:00
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char **argv)
|
|
|
|
{
|
2022-05-12 18:01:58 +00:00
|
|
|
LoadZipArgs(&argc, &argv);
|
2021-09-13 04:04:44 +00:00
|
|
|
return RunPythonModule(argc, argv);
|
|
|
|
}
|