Files @ 1b81e55ebb73
Branch filter:

Location: light9/dmx_usb_module/setup.py

Drew Perttula
new selectmanip can translate points in X. previous multi-point dragging has been lost along the way
Ignore-this: 1364fa68e7963e7de12a6349d23d3be8
from distutils.core import setup
from distutils.extension import Extension
from Pyrex.Distutils import build_ext

setup(name="dmx",
      ext_modules=[
        Extension("dmx",
                  ["dmx.pyx"],
#                  library_dirs=['/usr/X11R6/lib'],
#                  libraries=["X11","Xtst"]
                  ),
        ],  
      cmdclass={'build_ext':build_ext})