diff --git a/pyproject.toml b/pyproject.toml index 98a705f627686552e443340f0f46481f54f87b69..08bb48b6b89123096519c80b1436affcaae137ba 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "aidge_backend_cpu" -description="CPU implementation of layers for operators of the AIDGE framework" +description="CPU implementation of operators of the AIDGE framework" dependencies = [ "numpy>=1.21.6", "Jinja2>=3.1.2" diff --git a/setup.py b/setup.py index 555bdee73fd83a7ae8250834f0584553778f8aa3..f2f12a091b446a08c30e79b9699e653dc6e4d08c 100644 --- a/setup.py +++ b/setup.py @@ -58,14 +58,15 @@ class CMakeBuild(build_ext): [ "cmake", str(cwd), - "-DTEST=OFF", f"-DCMAKE_INSTALL_PREFIX:PATH={install_path}", f"-DCMAKE_BUILD_TYPE={compile_type}", + "-DTEST=OFF", "-DPYBIND=ON", "-DCMAKE_EXPORT_COMPILE_COMMANDS=ON", "-DCOVERAGE=OFF", ] ) + if not self.dry_run: self.spawn( ["cmake", "--build", ".", "--config", compile_type, "-j", max_jobs]