File tree Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Expand file tree Collapse file tree 4 files changed +10
-5
lines changed Original file line number Diff line number Diff line change @@ -27,6 +27,7 @@ share/python-wheels/
2727* .egg
2828skylab_studio_test.py
2929MANIFEST
30+ .pypirc
3031
3132# PyInstaller
3233# Usually these files are written by a python script from a template
Original file line number Diff line number Diff line change @@ -6,17 +6,21 @@ SkylabTech Studio Python client.
66
77## Requirements
88
9- - [ Python requests library] ( http://docs.python-requests.org/en/master/user/install/#install )
9+ libvips is required to be installed on your machine in order to install skylab-studio (for pyvips).
10+
11+ - [ Libvips documentation] ( https://www.libvips.org/install.html )
1012
1113## Installation
1214
1315``` bash
14- $ pip install skylab_studio
16+ $ pip install skylab-studio
1517```
1618
1719## Example usage
1820
1921``` python
22+ import skylab_studio
23+
2024# CREATE PROFILE
2125payload = {
2226 " name" : " profile name" ,
Original file line number Diff line number Diff line change 1111
1212setup (
1313 name = 'skylab_studio' ,
14- version = '0.0.13 ' ,
14+ version = '0.0.14 ' ,
1515 author = 'skylabtech' ,
16161717 packages = find_packages (),
2424 test_suite = "skylabtech.test" ,
2525 install_requires = [
2626 "aiohttp >= 3.9.3" ,
27- "pyvips >= 2.2 .2" ,
27+ "pyvips==2.0 .2" ,
2828 "requests >= 2.0.0"
2929 ],
3030 extras_require = {
Original file line number Diff line number Diff line change 33For more information, visit https://studio.skylabtech.ai
44"""
55
6- VERSION = '0.0.13 '
6+ VERSION = '0.0.14 '
You can’t perform that action at this time.
0 commit comments