annotate dmx_usb_module/setup.py @ 2025:1241e61fcf74
old math bug where KC was sending to collector as fast as it could (100fps)
Ignore-this: 4541336057ab4c892c79d648f46c6f43
author |
drewp@bigasterisk.com |
date |
Tue, 11 Jun 2019 01:32:58 +0000 |
parents |
4e60444605f6 |
children |
|
rev |
line source |
355
|
1 from distutils.core import setup
|
|
2 from distutils.extension import Extension
|
|
3 from Pyrex.Distutils import build_ext
|
|
4
|
|
5 setup(name="dmx",
|
|
6 ext_modules=[
|
|
7 Extension("dmx",
|
|
8 ["dmx.pyx"],
|
|
9 # library_dirs=['/usr/X11R6/lib'],
|
|
10 # libraries=["X11","Xtst"]
|
|
11 ),
|
|
12 ],
|
|
13 cmdclass={'build_ext':build_ext})
|
|
14
|