setup.py: remove extra quotes
[aubio.git] / setup.py
index f79e59a..38be7c1 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -19,11 +19,11 @@ __version__ = '.'.join(map(str, [AUBIO_MAJOR_VERSION,
 if AUBIO_VERSION_STATUS is not None:
     if AUBIO_VERSION_STATUS.startswith('~'):
         AUBIO_VERSION_STATUS = AUBIO_VERSION_STATUS[1:]
-    __version__ += AUBIO_VERSION_STATUS
+    #__version__ += AUBIO_VERSION_STATUS
 
 include_dirs = []
 library_dirs = []
-define_macros = []
+define_macros = [('AUBIO_VERSION', '%s' % __version__)]
 extra_link_args = []
 
 include_dirs += [ 'python/ext' ]
@@ -37,7 +37,7 @@ except ImportError:
 if sys.platform.startswith('darwin'):
     extra_link_args += ['-framework','CoreFoundation', '-framework','AudioToolbox']
 
-sources = glob.glob(os.path.join('python', 'ext', '*.c'))
+sources = sorted(glob.glob(os.path.join('python', 'ext', '*.c')))
 
 aubio_extension = Extension("aubio._aubio",
     sources,
@@ -48,7 +48,8 @@ aubio_extension = Extension("aubio._aubio",
 
 if os.path.isfile('src/aubio.h'):
     if not os.path.isdir(os.path.join('build','src')):
-        __version__ += 'a2' # python only version
+        pass
+        #__version__ += 'a2' # python only version
 
 classifiers = [
     'Development Status :: 4 - Beta',