Mercurial > code > home > repos > light9
view dmx_usb_module/setup.py @ 723:1b81e55ebb73
new selectmanip can translate points in X. previous multi-point dragging has been lost along the way
Ignore-this: 1364fa68e7963e7de12a6349d23d3be8
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Wed, 13 Jun 2012 08:39:33 +0000 |
parents | 4e60444605f6 |
children |
line wrap: on
line source
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})