sensor-anomalies/setup.py
2025-10-09 16:44:47 +02:00

8 lines
166 B
Python

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