1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-23 02:38:51 -05:00
catima/pymodule/setup.py

28 lines
730 B
Python
Raw Normal View History

2021-05-19 10:17:29 -04:00
from pathlib import Path
from pybind11.setup_helpers import Pybind11Extension, build_ext
from setuptools import setup
DIR = Path(__file__).parents[0]
SRC = [str(DIR/'pycatima.cpp')]+[str(fname.resolve()) for fname in DIR.glob('../*.cpp')]
SRCG = [str(fname.resolve()) for fname in DIR.glob('../global/*.c')]
SRC += SRCG
print (SRC)
example_module = Pybind11Extension(
'pycatima',
SRC,
include_dirs=['../build/include','../global'],
extra_compile_args=['-O3']
)
setup(
name='pycatima',
version=1.54,
author='Andrej Prochazka',
author_email='hrocho@vodacionline.sk',
description='python interface to catima library',
ext_modules=[example_module],
cmdclass={"build_ext": build_ext},
)