9 lines
185 B
Python
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"),
|
|
)
|