pyftg-sound

Prerequisites

Install OpenAL Soft

  • For Linux (Ubuntu, other distros should be similar)
sudo apt-add-repository universe
sudo apt-get update
sudo apt-get install libopenal-dev makehrtf openal-info
  • For MacOS
brew install openal-soft
echo 'export DYLD_LIBRARY_PATH="/opt/homebrew/opt/openal-soft/lib:$DYLD_LIBRARY_PATH"' >> ~/.zshrc

For developer only

Please refer to this link.

  1. Increase version number in pyproject.toml

  2. Build project

python -m build

if the above command doesn't work due to no module named build error, install build library then try again

pip install build
  1. Push project to pypi
twine upload dist/*