mirror of
https://github.com/triqs/dft_tools
synced 2024-11-07 06:33:48 +01:00
19a30034f5
* NO_DEPRECATED_API flag was added and now 'c_plocar_io.c' does not compile
10 lines
208 B
Python
10 lines
208 B
Python
|
|
from distutils.core import setup, Extension
|
|
import numpy
|
|
|
|
c_plocar_io_mod = Extension('c_plocar_io', sources=['c_plocar_io.c'],
|
|
include_dirs=[numpy.get_include()])
|
|
|
|
setup(ext_modules=[c_plocar_io_mod])
|
|
|