https://github.com/hpc-maths/GenEO
Raw File
Tip revision: 8cfb272518a47a1ea20715e6c0e5182632e7b591 authored by Loic Gouarin on 21 May 2024, 17:47:31 UTC
Create AUTHORS.txt
Tip revision: 8cfb272
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