Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 6 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand All @@ -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={
Expand Down
2 changes: 1 addition & 1 deletion skylab_studio/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
For more information, visit https://studio.skylabtech.ai
"""

VERSION = '0.0.13'
VERSION = '0.0.14'