Files
Meraki_QRCodeSccaner/setup.py
2025-02-04 15:23:01 -06:00

14 lines
335 B
Python

from distutils.core import setup, Extension
from Cython.Build import cythonize
setup(
ext_modules = cythonize([
"src/qr_detector.py",
"src/db_handler.py",
"src/webhook_handler.py"
], compiler_directives={
'language_level': "3",
'boundscheck': False,
'wraparound': False
})
)