Fake placeholder for the HISE Python SDK
pip install fake_hisepy
conda env create -f environment.yml
conda activate fake_hisepy
conda deactivate
conda remove -n fake_hisepy --all
Make sure you have the latest version of PyPA’s build installed:
python3 -m pip install --upgrade build
Run this command from the same directory where pyproject.toml is located:
python3 -m build
conda build and copy the --output-folder
conda build conda_recipe
conda install --use-local fake_hisepy
conda build conda_recipe --output-folder conda_dist
remove the intermediate files
conda build purge
To have conda build upload to anaconda.org automatically, use
conda config --set anaconda_upload yes
python3 -m twine upload --repository testpypi dist/*
Install the anaconda client conda install anaconda-client
Log into your Anaconda.org account from your terminal with the command: anaconda login
Upload using: anaconda upload ./conda_dist/noarch/fake_hisepy-0.1.0-py_0.tar.bz2
You can log out of your Anaconda.org account with the command: anaconda logout
export PYTHONPATH="/Users/ed.johnson/dev/fake_hisepy/src:$PYTHONPATH"