mirror of
https://github.com/Nuitka/Nuitka.git
synced 2025-12-24 12:14:04 +01:00
* This should make it a lot easier to add more of the same. * Also the version specific nature of iteritems is now properly considered. * Cleaned up usage of templates and Jinja2 environments for better reuse.
18 lines
371 B
Python
Executable File
18 lines
371 B
Python
Executable File
#!/usr/bin/env python
|
|
|
|
""" Launcher for static Python code generation tool.
|
|
|
|
"""
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Unchanged, running from checkout, use the parent directory, the nuitka
|
|
# package ought to be there.
|
|
sys.path.insert(0, os.path.normpath(os.path.join(os.path.dirname(__file__), "..")))
|
|
|
|
# isort:start
|
|
from nuitka.tools.specialize.SpecializePython import main
|
|
|
|
main()
|