forked from Stability-AI/stability-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
62 lines (56 loc) · 1.92 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
# 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.4.0',
author='Wes Brown',
author_email='wesbrown18@gmail.com',
maintainer='David Marx',
maintainer_email='david@stability.ai',
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.48.1',
'grpcio-tools==1.48.1',
'python-dotenv',
'protobuf==3.19.5'
],
extras_require={
'dev': [
'pytest',
'grpcio-testing'
]},
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',
)