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
60
61
62
63
64
65
#
# $Id: setup.py 104 2011-03-30 11:31:36Z patrick $
#
# Copyright 2011 Patrick Atamaniuk
#
# This source code is freely redistributable and may be used for
# any purpose. This copyright notice must be maintained.
# Patrick Atamaniuk and Contributors are not responsible for
# the consequences of using this software.
from distutils.core import setup
from distutils.extension import Extension
import os
from versioninfo import version, dev_status, extra_setup_args, ext_modules, read
extra_options = {}
extra_options.update(extra_setup_args())
setup(
name = "pysox",
version = version(),
author="Patrick Atamaniuk",
author_email="pysox@frobs.net",
maintainer="Patrick Atamaniuk",
maintainer_email="pysox@frobs.net",
url="http://foo42.de/wiki/pysox",
download_url="http://foo42.de/devel/pysox/dist/pysox-%s.tar.gz" % version(),
description="Python bindings for sox and libsox.",
long_description=read('README.txt'),
license="BSD",
classifiers = [
dev_status(),
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'License :: OSI Approved :: BSD License',
'Programming Language :: Cython',
'Programming Language :: Python :: 2',
# 'Programming Language :: Python :: 2.3',
# 'Programming Language :: Python :: 2.4',
# 'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.0',
'Programming Language :: Python :: 3.1',
'Programming Language :: Python :: 3.2',
'Programming Language :: C',
'Operating System :: OS Independent',
'Topic :: Multimedia :: Sound/Audio',
'Topic :: Multimedia :: Sound/Audio :: Editors',
'Topic :: Multimedia :: Sound/Audio :: Conversion',
'Topic :: Software Development :: Libraries :: Python Modules'
],
platforms="any",
packages = ['pysox'],
ext_modules = ext_modules(),
package_data = {'pysox': ['*.pxd']},
**extra_options
)