-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
32 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,19 @@ | ||
#!/usr/bin/python | ||
from distutils.core import setup, Extension | ||
from distutils.core import setup | ||
|
||
readme = """ | ||
'wavefile' python module to read and write audio files. | ||
It is a pythonic wrapper to the sndfile library featuring: | ||
* Attribute access to format, channels, length, sample rate... | ||
* Numpy interface using in place arrays (optimal for block processing) | ||
* Works as context manager | ||
* Different objects for reading and writing (no modes, consistent interface) | ||
* Shortened constants accessing for formats and the like | ||
* Matlab like whole file interface (not recommended but convenient) | ||
You can find the latest version at: | ||
https://github.com/vokimon/python-wavefile | ||
""" | ||
|
||
setup( | ||
name = "wavefile", | ||
|
@@ -8,8 +22,25 @@ | |
author = "David Garcia Garzon", | ||
author_email = "[email protected]", | ||
url = 'https://github.com/vokimon/python-wavefile', | ||
long_description = readme, | ||
license = 'GNU General Public License v3 or later (GPLv3+)', | ||
packages=[ | ||
'wavefile', | ||
], | ||
scripts=[ | ||
# 'audio.py', | ||
], | ||
classifiers = [ | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 2', | ||
'Topic :: Multimedia', | ||
'Topic :: Scientific/Engineering', | ||
'Topic :: Software Development :: Libraries :: Python Modules', | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'Development Status :: 5 - Production/Stable', | ||
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)', | ||
'Operating System :: OS Independent', | ||
], | ||
) | ||
|