forked from ml-research/safe-latent-diffusion
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 839 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import os
import pkg_resources
from setuptools import setup, find_packages
setup(
name="sld",
version="0.0.1", # expected format is one of x.y.z.dev0, or x.y.z.rc1 or x.y.z (no to dashes, yes to dots)
description="Safe Latent Diffusion",
long_description=open("README.md", "r", encoding="utf-8").read(),
long_description_content_type="text/markdown",
keywords="deep learning",
license="MIT",
author="Manuel Brack",
author_email="[email protected]",
url="https://github.com/ml-research/safe-latent-diffusion",
package_dir={"": "src"},
packages=find_packages("src"),
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,
)