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