Metadata-Version: 2.4
Name: pyquench
Version: 0.0.0
Summary: Customisable exception-quenching library, for Python
Home-page: https://github.com/synesissoftware/Quench.Python
Author: Matt Wilson
Author-email: Matt Wilson <matthew@synesis.com.au>
License: BSD-3-Clause
Project-URL: Bug Tracker, https://github.com/synesissoftware/Quench.Python/issues
Project-URL: Changelog, https://github.com/synesissoftware/Quench.Python/blob/master/CHANGES.md
Project-URL: Homepage, https://github.com/synesissoftware/Quench.Python
Project-URL: Repository, https://github.com/synesissoftware/Quench.Python
Keywords: exception,quench
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*, !=3.5.*, !=3.6.*, !=3.7.*
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS.md
Provides-Extra: dev
Requires-Dist: pytest<5,>=4.6; python_version < "3" and extra == "dev"
Requires-Dist: pytest>=7; python_version >= "3.8" and extra == "dev"
Requires-Dist: ruff>=0.4.0; python_version >= "3.8" and extra == "dev"
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# Quench.Python <!-- omit in toc -->

Customisable exception-quenching library, for Python

![Language](https://img.shields.io/badge/Python-3776AB?style=flat&logo=python&logoColor=white)
[![License](https://img.shields.io/badge/License-BSD_3--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause)
[![PyPI](https://img.shields.io/pypi/v/pyquench.svg)](https://pypi.org/project/pyquench/)
[![GitHub release](https://img.shields.io/github/v/release/synesissoftware/Quench.Python.svg)](https://github.com/synesissoftware/Quench.Python/releases/latest)
[![Last Commit](https://img.shields.io/github/last-commit/synesissoftware/Quench.Python)](https://github.com/synesissoftware/Quench.Python/commits/master)
[![CI](https://github.com/synesissoftware/Quench.Python/actions/workflows/python-package.yml/badge.svg)](https://github.com/synesissoftware/Quench.Python/actions/workflows/python-package.yml)
![Python](https://img.shields.io/badge/Python-2.7%20%7C%203.8+-lightgrey)


## Table of Contents <!-- omit in toc -->

- [Introduction](#introduction)
- [Installation](#installation)
- [Components](#components)
- [Project Information](#project-information)
  - [Where to get help](#where-to-get-help)
  - [Contribution guidelines](#contribution-guidelines)
  - [Dependencies](#dependencies)
    - [Efferent (fan-out)](#efferent-fan-out)
    - [Development Dependencies](#development-dependencies)
    - [Afferent (fan-in)](#afferent-fan-in)
  - [Related projects](#related-projects)
  - [License](#license)


## Introduction

**Quench** provides customisable exception-quenching utilities.

**Quench.Python** is the **Python** implementation. It supports **Python 2.7** and **Python 3.8+**. This repository is a packaging skeleton; the quench API is not implemented yet.


## Installation

Install via **pip** or **pip3**, as in:

```
$ pip3 install pyquench
```

Use via **import**:

```Python
import pyquench
```

or, as we prefer,

```Python
import pyquench as quench

print(quench.__version__)
```


## Components

Skeleton; API not yet implemented.


## Project Information


### Where to get help

[GitHub Page](https://github.com/synesissoftware/Quench.Python "GitHub Page")


### Contribution guidelines

Defect reports, feature requests, and pull requests are welcome on https://github.com/synesissoftware/Quench.Python.


### Dependencies


#### Efferent (fan-out)

None.


#### Development Dependencies

* [**pytest**](https://docs.pytest.org/);
* [**ruff**](https://docs.astral.sh/ruff/);


#### Afferent (fan-in)

None (currently).


### Related projects

* [**Quench.NET**](https://github.com/synesissoftware/Quench.NET);
* [**Quench.Ruby**](https://github.com/synesissoftware/Quench.Ruby);


### License

**Quench.Python** is released under the 3-clause BSD license. See [LICENSE](./LICENSE) for details.


<!-- ########################### end of file ########################### -->
