-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (39 loc) · 2.02 KB
/
setup.py
File metadata and controls
41 lines (39 loc) · 2.02 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="runware",
license="MIT",
version="0.5.0",
author="Runware Inc.",
author_email="python.sdk@runware.ai",
description="The Python Runware SDK is used to interact with the Runware API, powered by the Runware inference platform. It supports image generation, video generation, image upscale, video upscale, image caption, video caption, image background removal, video background removal, audio generation, and more. It also allows the use of an existing gallery of models or selecting any model or LoRA from the CivitAI gallery. The API also supports inpainting, outpainting, and a series of other ControlNet models.",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=["Runware", "stable diffusion", "text to image", "image to text", "text to video", "image to video", "video generation", "text to audio", "audio generation", "image upscale", "video upscale", "background removal"],
url="https://github.com/runware/sdk-python",
project_urls={
"Documentation": "https://docs.runware.ai/",
"Changes": "https://github.com/runware/sdk-python/releases",
"Code": "https://github.com/runware/sdk-python",
"Issue tracker": "https://github.com/runware/sdk-python/issues",
},
packages=find_packages(),
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
python_requires=">=3.10",
install_requires=[
"aiofiles==23.2.1",
"python-dotenv==1.0.1",
"websockets>=12.0",
],
)