Implement Numpy BitGenerator.

This commit is contained in:
2023-11-22 04:03:48 +00:00
parent c573505826
commit d102fa1d28
12 changed files with 215 additions and 119 deletions
+6
View File
@@ -0,0 +1,6 @@
from distutils.core import setup
import numpy
from Cython.Build import cythonize
setup(ext_modules=cythonize("src/nprand.pyx"), include_dirs=[numpy.get_include()])