IMCtermite/python/setup.py
Mario Fink e6315ee186 * add github workflow for building wheels
* rename cython module for more consistency
* restructure python code
* proper python module setup
* bump major version 2.0.0
2021-09-21 12:55:19 +02:00

7 lines
135 B
Python

from setuptools import setup
from Cython.Build import cythonize
setup(
ext_modules=cythonize(["IMCtermite.pyx"],language_level=3)
)