├── README.rst └── setup.py /README.rst: -------------------------------------------------------------------------------- 1 | PySoundFile 2 | =========== 3 | 4 | `SoundFile `__ is an audio 5 | library based on libsndfile, CFFI and NumPy. Full documentation is 6 | available on http://soundfile.readthedocs.org/. 7 | 8 | SoundFile can read and write sound files. File reading/writing is 9 | supported through `libsndfile `__, 10 | which is a free, cross-platform, open-source (LGPL) library for reading 11 | and writing many different sampled sound file formats that runs on many 12 | platforms including Windows, OS X, and Unix. It is accessed through 13 | `CFFI `__, which is a foreign function 14 | interface for Python calling C code. CFFI is supported for CPython 2.6+, 15 | 3.x and PyPy 2.0+. SoundFile represents audio data as NumPy arrays. 16 | 17 | | SoundFile is BSD licensed (BSD 3-Clause License). 18 | | (c) 2013, Bastian Bechtold 19 | 20 | This version is DEPRECATED. Please use SoundFile instead 21 | -------------------------------------------------------- 22 | 23 | This repository **Py**SoundFile was renamed to *SoundFile* (without 24 | the *Py*), as there is no need to tell Python programmers to use 25 | Python. It is now an empty shell with no code, but a dependency on the 26 | real version of SoundFile. 27 | 28 | If your code is still using PySoundFile, please use SoundFile instead. 29 | But don't worry, no code changes are required, as ``import soundfile`` 30 | works in both PySoundFile and SoundFile. 31 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | from setuptools import setup 3 | import warnings 4 | 5 | warnings.warn("PySoundFile is deprecated, please use SoundFile instead", DeprecationWarning) 6 | 7 | setup( 8 | name='PySoundFile', 9 | version='0.11.0', 10 | description='An audio library based on libsndfile, CFFI and NumPy', 11 | author='Bastian Bechtold', 12 | author_email='basti@bastibe.de', 13 | url='https://github.com/bastibe/PySoundFile', 14 | keywords=['audio', 'libsndfile'], 15 | py_modules=[], 16 | license='BSD 3-Clause License', 17 | install_requires=['soundfile'], 18 | platforms='any', 19 | classifiers=[ 20 | 'Development Status :: 5 - Production/Stable', 21 | 'Intended Audience :: Developers', 22 | 'Intended Audience :: Science/Research', 23 | 'License :: OSI Approved :: BSD License', 24 | 'Natural Language :: English', 25 | 'Operating System :: OS Independent', 26 | 'Programming Language :: Python', 27 | 'Programming Language :: Python :: 3', 28 | 'Programming Language :: Python :: 2', 29 | 'Programming Language :: Python :: Implementation :: PyPy', 30 | 'Programming Language :: Python :: Implementation :: CPython', 31 | 'Topic :: Multimedia :: Sound/Audio', 32 | ], 33 | long_description=open('README.rst').read(), 34 | ) 35 | --------------------------------------------------------------------------------