We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d9eca6 commit 27f6a4cCopy full SHA for 27f6a4c
bin/udapy
@@ -0,0 +1,7 @@
1
+#!/usr/bin/env python3
2
+"""Thin wrapper for backward compatibility. Calls udapi.cli.main()."""
3
+import sys
4
+from udapi.cli import main
5
+
6
+if __name__ == "__main__":
7
+ sys.exit(main())
bin/udapy.bat
@@ -0,0 +1,4 @@
+@REM The Python launcher "py" must be accessible via the PATH environment variable.
+@REM We assume that this batch script lies next to udapy in udapi-python/bin.
+@REM The PYTHONPATH environment variable must contain path to udapi-python.
+py %~dp$PATH:0\udapy %*
0 commit comments