mirror of
https://github.com/modelscope/DiffSynth-Studio.git
synced 2026-03-18 22:08:13 +00:00
21 lines
449 B
Python
21 lines
449 B
Python
import os
|
|
import pkg_resources
|
|
from setuptools import setup, find_packages
|
|
|
|
|
|
setup(
|
|
name="diffsynth",
|
|
py_modules=["diffsynth"],
|
|
version="1.0.0",
|
|
description="",
|
|
author="Artiprocher",
|
|
packages=find_packages(),
|
|
install_requires=[
|
|
str(r)
|
|
for r in pkg_resources.parse_requirements(
|
|
open(os.path.join(os.path.dirname(__file__), "requirements.txt"))
|
|
)
|
|
],
|
|
include_package_data=True
|
|
)
|