https://github.com/hpc-maths/GenEO
Raw File
Tip revision: 76ab96c30d909964ced1b4bc77f09173232ab37e authored by Loic Gouarin on 12 December 2022, 17:12:56 UTC
...
Tip revision: 76ab96c
setup.py
from setuptools import setup, find_packages
from Cython.Build import cythonize

setup(
    name = "GenEO",
    version="0.1",
    packages=find_packages(),
    ext_modules = cythonize('GenEO/matelem_cython.pyx'),
)
back to top