mirror of
https://github.com/kohya-ss/sd-scripts.git
synced 2026-04-15 08:36:41 +00:00
8 lines
250 B
Python
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
|
|
)
|