diff --git a/.gitignore b/.gitignore index 72a72c2a2..bb754dbd6 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,8 @@ FastDeploy.cmake build-debug.sh *dist fastdeploy.egg-info +fastdeploy_python.egg-info +fastdeploy_gpu_python.egg-info .setuptools-cmake-build fastdeploy/version.py fastdeploy/core/config.h @@ -15,5 +17,5 @@ fastdeploy/LICENSE* fastdeploy/ThirdPartyNotices* *.so* fastdeploy/libs/third_libs -csrcs/fastdeploy/core/config.h -csrcs/fastdeploy/pybind/main.cc \ No newline at end of file +csrc/fastdeploy/core/config.h +csrc/fastdeploy/pybind/main.cc \ No newline at end of file diff --git a/setup.py b/setup.py index 4d5cd7091..635201d59 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,6 @@ setup_configs["ENABLE_PADDLE_FRONTEND"] = os.getenv("ENABLE_PADDLE_FRONTEND", setup_configs["ENABLE_ORT_BACKEND"] = os.getenv("ENABLE_ORT_BACKEND", "ON") setup_configs["ENABLE_PADDLE_BACKEND"] = os.getenv("ENABLE_PADDLE_BACKEND", "OFF") -setup_configs["BUILD_DEMO"] = os.getenv("BUILD_DEMO", "ON") setup_configs["ENABLE_VISION"] = os.getenv("ENABLE_VISION", "ON") setup_configs["ENABLE_TRT_BACKEND"] = os.getenv("ENABLE_TRT_BACKEND", "OFF") setup_configs["WITH_GPU"] = os.getenv("WITH_GPU", "OFF")