blob: ab7d7d68fff1c4eeb04bc294f8a2b8e8eaf8d0f8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/usr/bin/env python
from distutils.core import setup, Extension
cleware_module = Extension('_cleware',
sources=['cleware_wrap.cxx', 'USBaccessBasic.cpp', 'USBaccess.cpp'],
)
setup (name = 'cleware',
version = '2.3',
author = "Folkert van Heusden",
description = """Cleware library bindings for Python""",
ext_modules = [cleware_module],
py_modules = ["cleware"],
)
|