from Cython.Build import cythonize from Cython.Compiler import Options from setuptools import setup Options.docstrings = False ext_modules = cythonize(["src/dopt_sensor_anomalies/detection.py"]) setup(ext_modules=ext_modules)