blob: 77263a76c1e0ad43bb5b485fc8f1534eaa828166 (
about) (
plain)
1
2
3
4
5
6
7
8
|
from setuptools import find_packages, setup
from Cython.Build import cythonize
setup(
name='robots',
packages=find_packages(),
ext_modules = cythonize('robots/*.pyx')
)
|