Metadata-Version: 2.1
Name: pymatillion
Version: 1.0.15
Summary: This is a Python wrapper for interacting with the REST API for Matillion.
Author-email: Abhinav Tiwari <abhinavtiwariusa84@gmail.com>
License: MIT License
        
        Copyright (c) 2023 Abhinav Yogesh Tiwari
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Project-URL: Homepage, https://github.com/tiwari-abhi/PyMatillion
Project-URL: Docs, https://tiwari-abhi.github.io/PyMatillion/reference
Keywords: Matillion,ETL,Python
Classifier: License :: OSI Approved :: MIT License
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
License-File: LICENSE

# PyMatillion

![CI](https://github.com/tiwari-abhi/PyMatillion/actions/workflows/test-build-release.yml/badge.svg)
[![PyPI](https://img.shields.io/pypi/v/PyMatillion)](https://pypi.org/project/PyMatillion)
[![PyPI Downloads](https://img.shields.io/pypi/dm/PyMatillion.svg?label=downloads)](https://pypi.org/project/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
``` 
