mirror of
https://github.com/Doctorado-ML/FImdlp.git
synced 2025-08-17 16:35:52 +00:00
Initial commit
This commit is contained in:
17
setup.py
Normal file
17
setup.py
Normal file
@@ -0,0 +1,17 @@
|
||||
"""
|
||||
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++",
|
||||
),
|
||||
]
|
||||
)
|
Reference in New Issue
Block a user