sandpypi/setup.py
Stan44 a03ba2b950 purdyfied and added to the commit messages
may of changed a couple of other things
maybe minor tweaks to physics.
2024-12-26 05:44:34 -06:00

9 lines
194 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("sandpypi/simulation_core.pyx"),
)