Files

7 lines
211 B
Python
Raw Permalink Normal View History

# setup.py
# python3 setup.py build_ext --inplace
# python setup.py build_ext --inplace
from distutils.core import setup
from Cython.Build import cythonize
setup(name='Robot', ext_modules=cythonize('Robot.py'))