Skip to content
Snippets Groups Projects
Commit 4010fafd authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Working setup.py.

parent d63dfdbe
No related branches found
No related tags found
No related merge requests found
......@@ -10,6 +10,7 @@ install*/
__pycache__
*.pyc
*.egg-info
dist*/
# Mermaid
*.mmd
......
from .aidge_core import * # import so generated by PyBind
\ No newline at end of file
from aidge_core.aidge_core import * # import so generated by PyBind
\ No newline at end of file
......@@ -102,10 +102,10 @@ if __name__ == '__main__':
platforms=["Linux"],
packages=find_packages(where="."),
include_package_data=True,
# exclude_package_data={"aidge": ["_Core/*", "_CPU/*"]},
ext_modules=[CMakeExtension('aidge_core')],
ext_modules=[CMakeExtension(get_project_name())],
cmdclass={
'build_ext': CMakeBuild,
},
zip_safe=False,
)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment