sandpypi/setup.py
Stan44 05e37a0bd5 made small updates to the spatial grid
rearranged some of the code for better readability
2024-12-26 14:22:19 -06:00

9 lines
185 B
Python

#this be a wip maybe gonna move heavy work loads to cython.
from setuptools import setup
from Cython.Build import cythonize
setup(
ext_modules=cythonize("simulation_core.pyx"),
)