Files
Kohya-ss-sd-scripts/setup.py
BIOKORO OGHENETEGA D. b8dc243622 Update setup.py
2024-09-06 15:59:05 +01:00

8 lines
250 B
Python

from setuptools import setup, 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
)