ref: 1ee40338d4e3f39a2a1b1a8cc1651d9eade1982d
parent: 9e6695dca9069ab4e93079152607fd698f404677
author: Paul Brossier <piem@piem.org>
date: Thu Mar 7 16:52:51 EST 2013
python/setup.py: move package_dir to lib
--- a/python/aubio/__init__.py
+++ /dev/null
@@ -1,9 +1,0 @@
-import numpy
-from _aubio import *
-
-class fvec(numpy.ndarray):
-
- def __new__(self, length = 1024, **kwargs):
- if type(length) == type([]):
- return numpy.array(length, dtype='float32', **kwargs)
- return numpy.zeros(length, dtype='float32', **kwargs)
--- /dev/null
+++ b/python/lib/aubio/__init__.py
@@ -1,0 +1,9 @@
+import numpy
+from _aubio import *
+
+class fvec(numpy.ndarray):
+
+ def __new__(self, length = 1024, **kwargs):
+ if type(length) == type([]):
+ return numpy.array(length, dtype='float32', **kwargs)
+ return numpy.zeros(length, dtype='float32', **kwargs)
--- a/python/setup.py
+++ b/python/setup.py
@@ -78,6 +78,7 @@
distrib = setup(name='aubio',
version = __version__,
+ package_dir = {'':'lib'},
packages = ['aubio'],
ext_modules = [aubio_extension],
description = 'interface to the aubio library',