Update setup.py

This commit is contained in:
BIOKORO OGHENETEGA D.
2024-09-06 15:59:05 +01:00
committed by GitHub
parent 3d1a9e66c2
commit b8dc243622

View File

@@ -1,3 +1,7 @@
from setuptools import setup, find_packages
setup(name = "library", packages = find_packages())
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
)