Metadata-Version: 2.1
Name: help-desk-client
Version: 0.2.0
Summary: A Python client for interfacing with help desk services.
License: MIT
Author: Sam Dudley
Author-email: sam.dudley@digital.trade.gov.uk
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: zenpy (>=2.0.25,<3.0.0)
Description-Content-Type: text/markdown

# help-desk-client

A Python client for interfacing with help desk services.

## Requirements

- [poetry](https://python-poetry.org)

## Setup local development

1. `poetry install`

## Run tests

1. `make test`

## Create a PyPI release (and create tag)

* Merge PR into main (making sure you have bumped the version in the .toml)

* Pull the main branch to your machine

* `git tag [new version #]`

* `git push origin --tags`

* `make publish`

