Metadata-Version: 2.4
Name: strangeworks-core
Version: 0.5.1
Summary: Strangeworks Core provides the infrastructure to interact with the platform.
Author-email: Strange Devs <hello@strangeworks.com>
Requires-Python: >=3.11
Requires-Dist: deprecated>=1.2.18
Requires-Dist: dill>=0.4.0
Requires-Dist: gql==3.5.3
Requires-Dist: pydantic>=2.11.7
Requires-Dist: requests-toolbelt>=1.0.0
Requires-Dist: requests>=2.32.5
Requires-Dist: tomlkit>=0.13.3
Description-Content-Type: text/markdown

# Strangeworks Python Core Library

The Strangeworks Python Core Library provides common code used across SDK's and applications.

## Installation

Install using `poetry`

```
pip install poetry
poetry install
```

## Tests

Test using pytest

```
poetry run pytest tests
```

## Set up dev pre-commit hooks:

the pre-commit hook registered takes care of linting, formatting, etc.

```
 poetry run pre-commit install
```

## Bump version

Bump version with [poetry](https://python-poetry.org/docs/cli/#version).

```
poetry version [patch, minor, major]
```

## Update packages

Update <package> version

```
poetry update <package>
```

Update all packages

```
poetry update
```
