An open API service indexing awesome lists of open source software.

https://github.com/mgeier/python-audio

Some Jupyter notebooks about audio signal processing with Python
https://github.com/mgeier/python-audio

audio-signal-processing binder jupyter-notebook

Last synced: 24 days ago
JSON representation

Some Jupyter notebooks about audio signal processing with Python

Awesome Lists containing this project

README

        

Some Notes Regarding Debian
===========================

Create Debian Package from PyPI
-------------------------------

Note: `sudo` must be installed and configured correctly
(maybe also fakeroot and python-all?).

```
apt-get update
apt-get install python-stdeb python-all-dev
pypi-install name-of-package
```

Replace `name-of-package` with the actual name of the PyPI package.

Create Debian Package with setuptools
-------------------------------------

Create binary package:
```
python setup.py --command-packages=stdeb.command bdist_deb
```

Create source package (and later a binary package):
```
python setup.py --command-packages=stdeb.command sdist_dsc
dpkg-buildpackage -rfakeroot -uc -us
```