bachelor_thesis/prog/python/qqgg/lab_xs/setup.py

9 lines
185 B
Python
Raw Normal View History

2020-05-01 11:28:58 +02:00
from setuptools import setup
from Cython.Build import cythonize
setup(
ext_modules=cythonize(
"lab_xs.pyx", annotate=True, compiler_directives=dict(cdivision=True)
)
)