-
Notifications
You must be signed in to change notification settings - Fork 339
/
setup.py
76 lines (73 loc) · 2.25 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# fmt: off
from setuptools import (
setup,
find_namespace_packages,
)
with open('README.md','r') as f:
README = f.read()
setup(
name='stability-sdk',
version='0.8.6',
author='Stability AI',
author_email='[email protected]',
maintainer='Stability AI',
maintainer_email='[email protected]',
url='https://beta.dreamstudio.ai/',
download_url='https://github.com/Stability-AI/stability-sdk/',
description='Python SDK for interacting with stability.ai APIs',
long_description=README,
long_description_content_type="text/markdown",
install_requires=[
'Pillow',
'grpcio>=1.53.0,<1.64.0',
'grpcio-tools>=1.53.0,<1.64.0',
'python-dotenv',
'param',
'protobuf>=4.21.12,<6.0.0'
],
extras_require={
'dev': [
'pytest',
'grpcio-testing'
],
'anim': [
'keyframed',
'numpy',
'opencv-python-headless',
],
'anim_ui': [
'keyframed',
'gradio==3.50.2',
'numpy',
'opencv-python-headless',
'tqdm',
]
},
packages=find_namespace_packages(
where='src',
include=['stability_sdk*'],
),
package_dir = {"": "src"},
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: Education',
'Intended Audience :: End Users/Desktop',
'Intended Audience :: Science/Research',
'Topic :: Artistic Software',
'Topic :: Education',
'Topic :: Games/Entertainment',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: CGI Tools/Libraries',
'Topic :: Multimedia',
'Topic :: Multimedia :: Graphics',
'Topic :: Multimedia :: Graphics :: 3D Rendering',
'Topic :: Multimedia :: Graphics :: Editors',
'Topic :: Multimedia :: Graphics :: Editors :: Raster-Based',
'Topic :: Scientific/Engineering',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Human Machine Interfaces',
'Topic :: Scientific/Engineering :: Image Processing',
],
keywords=[],
license='MIT',
)