3
0
mirror of https://github.com/triqs/dft_tools synced 2024-07-05 02:46:03 +02:00
dft_tools/c/plocar_io/setup.py
Oleg E. Peil 819fc987f0 Reshuffled files after repository merge
The files from the original vasp-interface repository are reshuffled in
accord with the directory structure of dft_tools. Some of the directories,
such as 'test' (unit tests for the interface), 'examples' (simple examples for
the development purposes) are temporarily placed into 'python/vasp' directory
to avoid confusion with integral tests and examples of dft_tools.
2015-10-13 11:27:55 +02:00

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])