From 34f82be2c212d2d81d95b1daeff6d66fe0524e16 Mon Sep 17 00:00:00 2001 From: 2lives Date: Mon, 25 Mar 2024 16:52:44 -0700 Subject: [PATCH] SCP-6 updated readme with requirements and bump ver --- .gitignore | 1 + README.md | 8 ++++++-- setup.py | 4 ++-- skylab_studio/version.py | 2 +- 4 files changed, 10 insertions(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 8dfc860..a0e91c0 100644 --- a/.gitignore +++ b/.gitignore @@ -27,6 +27,7 @@ share/python-wheels/ *.egg skylab_studio_test.py MANIFEST +.pypirc # PyInstaller # Usually these files are written by a python script from a template diff --git a/README.md b/README.md index ff4dcfa..7c326d7 100644 --- a/README.md +++ b/README.md @@ -6,17 +6,21 @@ SkylabTech Studio Python client. ## Requirements -- [Python requests library](http://docs.python-requests.org/en/master/user/install/#install) +libvips is required to be installed on your machine in order to install skylab-studio (for pyvips). + +- [Libvips documentation](https://www.libvips.org/install.html) ## Installation ```bash -$ pip install skylab_studio +$ pip install skylab-studio ``` ## Example usage ```python +import skylab_studio + # CREATE PROFILE payload = { "name": "profile name", diff --git a/setup.py b/setup.py index d4bb19b..65e0a19 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='skylab_studio', - version='0.0.13', + version='0.0.14', author='skylabtech', author_email='info@skylabtech.ai', packages=find_packages(), @@ -24,7 +24,7 @@ test_suite="skylabtech.test", install_requires=[ "aiohttp >= 3.9.3", - "pyvips >= 2.2.2", + "pyvips==2.0.2", "requests >= 2.0.0" ], extras_require={ diff --git a/skylab_studio/version.py b/skylab_studio/version.py index b52493a..b0992ef 100644 --- a/skylab_studio/version.py +++ b/skylab_studio/version.py @@ -3,4 +3,4 @@ For more information, visit https://studio.skylabtech.ai """ -VERSION = '0.0.13' +VERSION = '0.0.14'