https://github.com/hpc-maths/GenEO
Raw File
Tip revision: 885ab129b2402c353548bcfc51214f608f09bade authored by Loic Gouarin on 02 December 2022, 12:34:47 UTC
add fenics example and update environment.yml
Tip revision: 885ab12
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