Metadata-Version: 2.1
Name: pymatillion
Version: 1.0.14
Summary: This is a Python wrapper for interacting with the REST API for Matillion.
Author-email: Abhinav Tiwari <abhinavtiwariusa84@gmail.com>
Project-URL: Homepage, https://github.com/tiwari-abhi/PyMatillion
Project-URL: Docs, https://tiwari-abhi.github.io/PyMatillion/reference
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Requires-Python: >=3.10
Description-Content-Type: text/markdown
Provides-Extra: dev

# PyMatillion

This is a Python wrapper for interacting with the REST API for Matillion.

For full documentation visit [Documentation Link](https://tiwari-abhi.github.io/PyMatillion/reference).

## Installation

    pip install pymatillion

## Releasing
Releases are automatically built in GitHub actions pipeline when a tag is pushed.

1. Use bumpver to increment the version string across the project.
```
bumpver update -p/-m/--major --no-commit
```
2. Copy the updated version string from pyproject.toml 
3. Tag the relevant commit on the master branch with the version from step 2 

 ``` 
 # Set next version number
 export RELEASE=x.x.x`

 # Create tags
 git commit --allow-empty -m "Release $RELEASE"
 git tag -a $RELEASE -m "Version $RELEASE"
 
 # Push
 git push origin --tags
``` 
