Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created October 8, 2019 04:32
Show Gist options
  • Save ryantm/80197d962c5f0a371c5f8714a61df88d to your computer and use it in GitHub Desktop.
Save ryantm/80197d962c5f0a371c5f8714a61df88d to your computer and use it in GitHub Desktop.
/nix/store/l4wgm1958k9dfh0lp4nrfwv1d25p22g1-python3.7-cx_Freeze-6.0
├── bin
│   ├── cxfreeze
│   └── cxfreeze-quickstart
├── lib
│   └── python3.7
│   └── site-packages
│   ├── cx_Freeze
│   │   ├── bases
│   │   │   └── Console
│   │   ├── common.py
│   │   ├── dist.py
│   │   ├── finder.py
│   │   ├── freezer.py
│   │   ├── hooks.py
│   │   ├── __init__.py
│   │   ├── initscripts
│   │   │   ├── Console.py
│   │   │   ├── ConsoleSetLibPath.py
│   │   │   ├── __pycache__
│   │   │   │   ├── Console.cpython-37.opt-1.pyc
│   │   │   │   ├── Console.cpython-37.pyc
│   │   │   │   ├── ConsoleSetLibPath.cpython-37.opt-1.pyc
│   │   │   │   ├── ConsoleSetLibPath.cpython-37.pyc
│   │   │   │   ├── SharedLib.cpython-37.opt-1.pyc
│   │   │   │   ├── SharedLib.cpython-37.pyc
│   │   │   │   ├── SharedLibSource.cpython-37.opt-1.pyc
│   │   │   │   ├── SharedLibSource.cpython-37.pyc
│   │   │   │   ├── __startup__.cpython-37.opt-1.pyc
│   │   │   │   └── __startup__.cpython-37.pyc
│   │   │   ├── SharedLib.py
│   │   │   ├── SharedLibSource.py
│   │   │   └── __startup__.py
│   │   ├── macdist.py
│   │   ├── main.py
│   │   ├── __pycache__
│   │   │   ├── common.cpython-37.opt-1.pyc
│   │   │   ├── common.cpython-37.pyc
│   │   │   ├── dist.cpython-37.opt-1.pyc
│   │   │   ├── dist.cpython-37.pyc
│   │   │   ├── finder.cpython-37.opt-1.pyc
│   │   │   ├── finder.cpython-37.pyc
│   │   │   ├── freezer.cpython-37.opt-1.pyc
│   │   │   ├── freezer.cpython-37.pyc
│   │   │   ├── hooks.cpython-37.opt-1.pyc
│   │   │   ├── hooks.cpython-37.pyc
│   │   │   ├── __init__.cpython-37.opt-1.pyc
│   │   │   ├── __init__.cpython-37.pyc
│   │   │   ├── macdist.cpython-37.opt-1.pyc
│   │   │   ├── macdist.cpython-37.pyc
│   │   │   ├── main.cpython-37.opt-1.pyc
│   │   │   ├── main.cpython-37.pyc
│   │   │   ├── setupwriter.cpython-37.opt-1.pyc
│   │   │   ├── setupwriter.cpython-37.pyc
│   │   │   ├── windist.cpython-37.opt-1.pyc
│   │   │   └── windist.cpython-37.pyc
│   │   ├── samples
│   │   │   ├── advanced
│   │   │   │   ├── advanced_1.py
│   │   │   │   ├── advanced_2.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── advanced_1.cpython-37.opt-1.pyc
│   │   │   │   │   ├── advanced_1.cpython-37.pyc
│   │   │   │   │   ├── advanced_2.cpython-37.opt-1.pyc
│   │   │   │   │   ├── advanced_2.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   └── setup.cpython-37.pyc
│   │   │   │   └── setup.py
│   │   │   ├── asmodule
│   │   │   │   ├── asmodule.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── asmodule.cpython-37.opt-1.pyc
│   │   │   │   │   ├── asmodule.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   └── setup.cpython-37.pyc
│   │   │   │   └── setup.py
│   │   │   ├── importlib
│   │   │   │   ├── get_examples.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── get_examples.cpython-37.opt-1.pyc
│   │   │   │   │   ├── get_examples.cpython-37.pyc
│   │   │   │   │   ├── server_simple.cpython-37.opt-1.pyc
│   │   │   │   │   ├── server_simple.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   ├── setup.cpython-37.pyc
│   │   │   │   │   ├── web_srv.cpython-37.opt-1.pyc
│   │   │   │   │   ├── web_srv.cpython-37.pyc
│   │   │   │   │   ├── wsgiserver.cpython-37.opt-1.pyc
│   │   │   │   │   └── wsgiserver.cpython-37.pyc
│   │   │   │   ├── server_simple.py
│   │   │   │   ├── setup.py
│   │   │   │   ├── web_srv.py
│   │   │   │   └── wsgiserver.py
│   │   │   ├── matplotlib
│   │   │   │   ├── matplotlib_eg.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── matplotlib_eg.cpython-37.opt-1.pyc
│   │   │   │   │   ├── matplotlib_eg.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   └── setup.cpython-37.pyc
│   │   │   │   └── setup.py
│   │   │   ├── openpyxl
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   ├── setup.cpython-37.pyc
│   │   │   │   │   ├── test_openpyxl.cpython-37.opt-1.pyc
│   │   │   │   │   └── test_openpyxl.cpython-37.pyc
│   │   │   │   ├── setup.py
│   │   │   │   └── test_openpyxl.py
│   │   │   ├── PyQt4
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── PyQt4app.cpython-37.opt-1.pyc
│   │   │   │   │   ├── PyQt4app.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   └── setup.cpython-37.pyc
│   │   │   │   ├── PyQt4app.py
│   │   │   │   └── setup.py
│   │   │   ├── PyQt5
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── PyQt5app.cpython-37.opt-1.pyc
│   │   │   │   │   ├── PyQt5app.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   └── setup.cpython-37.pyc
│   │   │   │   ├── PyQt5app.py
│   │   │   │   └── setup.py
│   │   │   ├── relimport
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── relimport.cpython-37.opt-1.pyc
│   │   │   │   │   ├── relimport.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   └── setup.cpython-37.pyc
│   │   │   │   ├── relimport.py
│   │   │   │   └── setup.py
│   │   │   ├── service
│   │   │   │   ├── Config.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── Config.cpython-37.opt-1.pyc
│   │   │   │   │   ├── Config.cpython-37.pyc
│   │   │   │   │   ├── ServiceHandler.cpython-37.opt-1.pyc
│   │   │   │   │   ├── ServiceHandler.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   └── setup.cpython-37.pyc
│   │   │   │   ├── ServiceHandler.py
│   │   │   │   └── setup.py
│   │   │   ├── simple
│   │   │   │   ├── hello.py
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── hello.cpython-37.opt-1.pyc
│   │   │   │   │   ├── hello.cpython-37.pyc
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   └── setup.cpython-37.pyc
│   │   │   │   └── setup.py
│   │   │   ├── Tkinter
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   ├── setup.cpython-37.pyc
│   │   │   │   │   ├── SimpleTkApp.cpython-37.opt-1.pyc
│   │   │   │   │   └── SimpleTkApp.cpython-37.pyc
│   │   │   │   ├── setup.py
│   │   │   │   └── SimpleTkApp.py
│   │   │   ├── wx
│   │   │   │   ├── __pycache__
│   │   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   │   ├── setup.cpython-37.pyc
│   │   │   │   │   ├── wxapp.cpython-37.opt-1.pyc
│   │   │   │   │   └── wxapp.cpython-37.pyc
│   │   │   │   ├── setup.py
│   │   │   │   └── wxapp.py
│   │   │   └── zope
│   │   │   ├── __pycache__
│   │   │   │   ├── qotd.cpython-37.opt-1.pyc
│   │   │   │   ├── qotd.cpython-37.pyc
│   │   │   │   ├── setup.cpython-37.opt-1.pyc
│   │   │   │   └── setup.cpython-37.pyc
│   │   │   ├── qotd.py
│   │   │   └── setup.py
│   │   ├── setupwriter.py
│   │   ├── util.cpython-37m-x86_64-linux-gnu.so
│   │   └── windist.py
│   └── cx_Freeze-6.0.dist-info
│   ├── INSTALLER
│   ├── METADATA
│   ├── RECORD
│   ├── top_level.txt
│   └── WHEEL
└── nix-support
└── propagated-build-inputs
38 directories, 148 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment