* rename cython module for more consistency * restructure python code * proper python module setup * bump major version 2.0.0
7 lines
135 B
Python
7 lines
135 B
Python
from setuptools import setup
|
|
from Cython.Build import cythonize
|
|
|
|
setup(
|
|
ext_modules=cythonize(["IMCtermite.pyx"],language_level=3)
|
|
)
|