This repository has been archived on 2025-04-15. You can view files and clone it, but cannot push or open issues or pull requests.
2023-05-24 11:42:28 +02:00

21 lines
525 B
Python

import setuptools
import numpy as np
c_ext = setuptools.Extension("creader",
sources = ["src/creader_module.c", "src/cluster_reader.c"],
include_dirs=[
np.get_include(),"src/"
],
extra_compile_args=['-std=c99', '-Wall', '-Wextra'] )
c_ext.language = 'c'
setuptools.setup(
name= 'creader',
version = '0.1',
description = 'Reading cluster files',
ext_modules=[c_ext],
)