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'