Files
appointment_tool/setup.py
2024-05-05 17:03:06 +02:00

6 lines
147 B
Python

from setuptools import setup
from Cython.Build import cythonize
setup(
ext_modules = cythonize("src/person_name/cython_extract_methods.pyx")
)