forked from mlc-ai/web-stable-diffusion
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
29 lines (27 loc) · 865 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
27
28
29
from distutils.core import setup
from setuptools import find_packages
# Note there is no need to setup when
# running locally in this folder.
setup(
name = "web-stable-diffusion",
version = "0.1.0",
license="Apache-2.0",
description = "Stable diffusion on browser",
author = "Web stable diffusion contributors",
url = "https://github.com/mlc-ai/web-stable-diffusion",
keywords = [],
packages = find_packages(),
install_requires = [
"torch",
"diffusers",
"transformers"
],
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
],
)