Skip to content

Commit 3b0c0cd

Browse files
authored
Merge pull request #9 from skylab-tech/SCP-6-update-docs
SCP-6 updated readme with requirements and bump ver
2 parents d2772c6 + 34f82be commit 3b0c0cd

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ share/python-wheels/
2727
*.egg
2828
skylab_studio_test.py
2929
MANIFEST
30+
.pypirc
3031

3132
# PyInstaller
3233
# Usually these files are written by a python script from a template

README.md

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2125
payload = {
2226
"name": "profile name",

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111

1212
setup(
1313
name='skylab_studio',
14-
version='0.0.13',
14+
version='0.0.14',
1515
author='skylabtech',
1616
author_email='[email protected]',
1717
packages=find_packages(),
@@ -24,7 +24,7 @@
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={

skylab_studio/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
For more information, visit https://studio.skylabtech.ai
44
"""
55

6-
VERSION = '0.0.13'
6+
VERSION = '0.0.14'

0 commit comments

Comments
 (0)