Files
fimdlp/setup.py
2022-11-26 20:06:40 +01:00

18 lines
334 B
Python

"""
Calling
$python setup.py build_ext --inplace
will build the extension library in the current file.
"""
from setuptools import Extension, setup
setup(
ext_modules=[
Extension(
name="fimdlp",
sources=["cfimdlp.pyx", "FImdlp.cpp"],
language="c++",
),
]
)