-
Notifications
You must be signed in to change notification settings - Fork 187
/
setup.py
28 lines (25 loc) · 859 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
""" See:
https://github.com/mix1009/sdwebuiapi
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
import pathlib
here = pathlib.Path(__file__).parent.resolve()
long_description = (here / "README.md").read_text(encoding="utf-8")
setup(
name="webuiapi",
version="0.9.16",
description="Python API client for AUTOMATIC1111/stable-diffusion-webui",
url="https://github.com/mix1009/sdwebuiapi",
author="ChunKoo Park",
author_email="mix100f9@gmail.com",
keywords="stable-diffuion-webui, AUTOMATIC1111, stable-diffusion, api",
packages=["webuiapi"],
#packages=find_packages(),
python_requires=">=3.7, <4",
install_requires=['requests',
'Pillow',],
long_description=long_description,
long_description_content_type='text/markdown',
license="MIT",
)