mirror of
https://github.com/kohya-ss/sd-scripts.git
synced 2026-04-15 00:32:25 +00:00
8 lines
196 B
Python
8 lines
196 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"},
|
|
)
|