├── .github └── workflows │ ├── build-mac.yml │ └── build-windows.yml ├── .gitignore ├── README.md └── main.py /.github/workflows/build-mac.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemrollerapp/demucs-cxfreeze/HEAD/.github/workflows/build-mac.yml -------------------------------------------------------------------------------- /.github/workflows/build-windows.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemrollerapp/demucs-cxfreeze/HEAD/.github/workflows/build-windows.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemrollerapp/demucs-cxfreeze/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemrollerapp/demucs-cxfreeze/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/stemrollerapp/demucs-cxfreeze/HEAD/main.py --------------------------------------------------------------------------------