optimization with cython

This commit is contained in:
2024-05-05 17:03:06 +02:00
parent 609fa6c4e7
commit c7713079a4
4 changed files with 231 additions and 19 deletions
+6
View File
@@ -0,0 +1,6 @@
from setuptools import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("src/person_name/cython_extract_methods.pyx")
)