forked from Stability-AI/stability-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
57 lines (51 loc) · 1.79 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
# fmt: off
from setuptools import setup, find_packages
with open('README.md','r') as f:
README = f.read()
setup(
name='stability-sdk',
version='0.2.4',
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',
'grpcio-tools',
'python-dotenv',
'protobuf>=3.20.2,<4'
],
packages=find_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',
)