7 lines
211 B
Python
7 lines
211 B
Python
# 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'))
|