The PocketBase Python SDK is MIT licensed code.
+These are the requirements for local development: + +* Python 3.7+ +* Poetry (https://python-poetry.org/) + +You can install locally: + +```shell +poetry install +``` + +Or can build and generate a package: + +```shell +poetry build +``` + +But if you are using only PIP, use this command: + +```shell +python3 -m pip install -e . +``` + +## Tests + +To execute the tests use this command: + +``` +poetry run pytest +``` + +## License + +The PocketBase Python SDK is MIT licensed code. diff --git a/pocketbase/__init__.py b/pocketbase/__init__.py index b35f624..e1313a3 100644 --- a/pocketbase/__init__.py +++ b/pocketbase/__init__.py @@ -1,9 +1,9 @@ __title__ = "pocketbase" __description__ = "PocketBase client SDK for python." -__version__ = "0.3.0" +__version__ = "0.8.0" -from .client import Client, ClientResponseError +from .client import Client class PocketBase(Client): diff --git a/pyproject.toml b/pyproject.toml index b9d9b7b..59f3d76 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dynamic = ["readme", "version"] [tool.poetry] name = "pocketbase" -version = "0.3.0" +version = "0.8.0" description = "PocketBase SDK for python." authors = ["Vithor Jaeger