mirror of
https://github.com/vale981/bachelor_thesis
synced 2025-03-10 12:56:41 -04:00
9 lines
185 B
Python
9 lines
185 B
Python
|
from setuptools import setup
|
||
|
from Cython.Build import cythonize
|
||
|
|
||
|
setup(
|
||
|
ext_modules=cythonize(
|
||
|
"lab_xs.pyx", annotate=True, compiler_directives=dict(cdivision=True)
|
||
|
)
|
||
|
)
|