+ GUI: move control wrapper classes to a separate set of files
[calf.git] / bigbull / setup.py
blob3cc0c5bba94befea0f5c914edd34046389ee9537
1 #!/usr/bin/env python
2 from distutils.core import setup, Extension
4 module1 = Extension('calfpytools',
5 libraries = ['jack'],
6 sources = ['calfpytools.cpp', 'ttl.cpp'],
7 extra_compile_args = ["-g"],
8 extra_link_args = ["-g"]
11 setup (name = 'CalfPyTools',
12 version = '0.01',
13 description = 'Calf Python Tools',
14 ext_modules = [module1])