├── .gitignore ├── LICENSE.md ├── README.md ├── bootstrap.py ├── config.nims ├── cpython_types.nim ├── onefile_python.nim ├── onefile_python.nim.cfg └── onefile_python.nimble /.gitignore: -------------------------------------------------------------------------------- 1 | *.exe 2 | *.zip 3 | __pycache/ 4 | .idea/ -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synap5e/onefile_python/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synap5e/onefile_python/HEAD/README.md -------------------------------------------------------------------------------- /bootstrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synap5e/onefile_python/HEAD/bootstrap.py -------------------------------------------------------------------------------- /config.nims: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synap5e/onefile_python/HEAD/config.nims -------------------------------------------------------------------------------- /cpython_types.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synap5e/onefile_python/HEAD/cpython_types.nim -------------------------------------------------------------------------------- /onefile_python.nim: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synap5e/onefile_python/HEAD/onefile_python.nim -------------------------------------------------------------------------------- /onefile_python.nim.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synap5e/onefile_python/HEAD/onefile_python.nim.cfg -------------------------------------------------------------------------------- /onefile_python.nimble: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/synap5e/onefile_python/HEAD/onefile_python.nimble --------------------------------------------------------------------------------