-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·23 lines (21 loc) · 893 Bytes
/
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
from distutils.core import setup, Extension
module1 = Extension('_Kowalski',
include_dirs = ['/usr/local/include'],
libraries = ['kowalski', 'portaudio'],
library_dirs = ['lib/portaudio/osx', 'dist'],
sources = ['src/python/kowalski_wrap.c'],
extra_link_args = ['-framework', 'CoreAudio',
'-framework', 'AudioToolbox',
'-framework', 'AudioUnit',
'-framework', 'CoreServices',
'-v'])
setup (name = 'Kowalski',
version = '1.0',
description = 'The Kowalski Engine python bindings.',
author = '',
author_email = '',
url = '',
long_description = '''
bla
''',
ext_modules = [module1])