mirror of
https://github.com/Stability-AI/generative-models.git
synced 2025-12-20 14:54:21 +01:00
14 lines
403 B
Python
14 lines
403 B
Python
from setuptools import find_packages, setup
|
|
|
|
setup(
|
|
name="sgm",
|
|
version="0.0.1",
|
|
packages=find_packages(),
|
|
python_requires=">=3.8",
|
|
py_modules=["sgm"],
|
|
description="Stability Generative Models",
|
|
long_description=open("README.md", "r", encoding="utf-8").read(),
|
|
long_description_content_type="text/markdown",
|
|
url="https://github.com/Stability-AI/generative-models",
|
|
)
|