From b8dc243622d653b7e4f4469f42cb5447373d9628 Mon Sep 17 00:00:00 2001 From: "BIOKORO OGHENETEGA D." <110293491+Leommm-byte@users.noreply.github.com> Date: Fri, 6 Sep 2024 15:59:05 +0100 Subject: [PATCH] Update setup.py --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 7bf548340..cd3b8a7a6 100644 --- a/setup.py +++ b/setup.py @@ -1,3 +1,7 @@ from setuptools import setup, find_packages - -setup(name = "library", packages = find_packages()) \ No newline at end of file + +setup( + name="sd-scripts", + packages=find_packages(), # Automatically find all packages in the repository + package_dir={"sd-scripts": "."}, # Install all packages under sd-scripts in the venv +)