Skip to content

Commit

Permalink
added metadata to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vokimon committed Jan 3, 2013
1 parent a289f82 commit c115ffc
Showing 1 changed file with 32 additions and 1 deletion.
33 changes: 32 additions & 1 deletion setup.py
@@ -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",
Expand All @@ -8,8 +22,25 @@
author = "David Garcia Garzon",
author_email = "voki@canvoki.net",
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',
],
)

0 comments on commit c115ffc

Please sign in to comment.