KOHYA_SS-21.55 / setup.py
andzhang01's picture
Upload 42 files
a4be04d
raw
history blame contribute delete
295 Bytes
from setuptools import setup, find_packages
import subprocess
import os
import sys
# Call the create_user_files.py script
script_path = os.path.join("tools", "create_user_files.py")
subprocess.run([sys.executable, script_path])
setup(name="library", version="1.0.3", packages=find_packages())