forked from vokimon/python-wavefile
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·60 lines (54 loc) · 1.88 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/python
from setuptools import setup
readme = """
Pythonic libsndfile wrapper to read and write audio files.
Features
--------
- Writer and reader objects are context managers
- Format, channels, length, sample rate... are accessed as properties as well as text strings
- Real multichannel (not just mono/stereo)
- All libsndfile formats supported, floating point encodings by default
- Numpy based interface
- Generators for block by block reading
- Reading reuses the same data block to avoid many data allocations
- Shortened constant names for formats (Using scopes instead of prefixes)
- Matlab-like whole-file interface (not recommended in production code but quite convenient for quick scripting)
- Transparent UTF-8 handling for filenames and text strings
- No module compilation required (wraps the dll using ctypes)
- Works both for Python3 >= 3.3 and Python2 >= 2.6
You can find the latest version at:
https://github.com/vokimon/python-wavefile
"""
setup(
name = "wavefile",
version = "1.4~git",
description = "Pythonic wave file reader and writer",
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',
],
install_requires=[
'numpy',
],
test_suite='test',
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'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',
],
)