generated from dopt-python/py311
8 lines
166 B
Python
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)
|