Files
DiffSynth-Studio/setup.py
2024-06-25 15:43:27 +08:00

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
)