summaryrefslogtreecommitdiff
path: root/setup.py_CI
blob: 59168eaf317b7cb78adf4c9d22a6fbe6701ee806 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/usr/bin/env python

from distutils.core import setup, Extension

cleware_module = Extension('_cleware',
                           sources=['cleware_wrap.cxx', 'USBaccessBasic.cpp', 'USBaccess.cpp'],
                           libraries = ['perl', 'hidapi-libusb'],
                           )

setup (name = 'cleware',
       version = '2.3',
       author      = "Folkert van Heusden",
       description = """Cleware library bindings for Python""",
       ext_modules = [cleware_module],
       py_modules = ["cleware"],
       )