Files @ c2faa69099e6
Branch filter:

Location: light9/dmx_usb_module/setup.py

drewp@bigasterisk.com
asco: display update frequency and dim when updates stop. run slower updates on tablets and phones
Ignore-this: 2439d0f540c9eae00c4f18e26411c100
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})