https://github.com/mmasdeu/darmonpoints
Raw File
Tip revision: 50c7b129126ea717c38250de7b5269fcc2dca9bd authored by Marc Masdeu on 09 May 2024, 07:40:14 UTC
Modified to improve caching
Tip revision: 50c7b12
setup.py
from setuptools import setup
from Cython.Build import cythonize
import os.path

setup(
    ext_modules = cythonize(os.path.join("darmonpoints", "*.pyx"))
)
back to top