Metadata-Version: 2.4
Name: pyclasp
Version: 0.8.13
Summary: Command-Line Argument Sorting and Parsing, for Python
Home-page: https://github.com/synesissoftware/CLASP.Python
Author: Matt Wilson
Author-email: Matt Wilson <matthew@synesis.com.au>
License: BSD-3-Clause
Project-URL: Bug Tracker, https://github.com/synesissoftware/CLASP.Python/issues
Project-URL: Changelog, https://github.com/synesissoftware/CLASP.Python/blob/master/CHANGES.md
Project-URL: Homepage, https://github.com/synesissoftware/CLASP.Python
Project-URL: Repository, https://github.com/synesissoftware/CLASP.Python
Keywords: cli,command-line,parsing
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
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

# CLASP.Python <!-- omit in toc -->
**C**ommand-**L**ine **A**rgument **S**orting and **P**arsing, 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/pyclasp.svg)](https://pypi.org/project/pyclasp/)
[![GitHub release](https://img.shields.io/github/v/release/synesissoftware/CLASP.Python.svg)](https://github.com/synesissoftware/CLASP.Python/releases/latest)
[![Last Commit](https://img.shields.io/github/last-commit/synesissoftware/CLASP.Python)](https://github.com/synesissoftware/CLASP.Python/commits/master)
![Python](https://img.shields.io/badge/Python-2.7%20%7C%203.8+-lightgrey)
[![CI](https://github.com/synesissoftware/CLASP.Python/actions/workflows/python-package.yml/badge.svg)](https://github.com/synesissoftware/CLASP.Python/actions/workflows/python-package.yml)
[![PyPI project](https://img.shields.io/badge/documentation-PyPI-lightgrey)](https://pypi.org/project/pyclasp/)
[![PyPI Downloads](https://img.shields.io/pypi/dm/pyclasp.svg)](https://pypi.org/project/pyclasp/)

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

- [Introduction](#introduction)
- [Installation \& usage](#installation--usage)
- [Components](#components)
- [Examples](#examples)
- [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

**CLASP** stands for **C**ommand-**L**ine **A**rgument **S**orting and
**P**arsing. The first CLASP library was a C library with a C++ wrapper. There
have been several implementations in other languages. **CLASP.Python** is the
Python version.


## Installation & usage

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

```
pip3 install pyclasp
```

Use via **import**:

```Python

import pyclasp
```

or, as we prefer,

```Python

import pyclasp as clasp
```


## Components

TBC


## Examples

Examples are provided in the ```examples``` directory, along with a markdown description for each. A detailed list TOC of them is provided in [EXAMPLES.md](./EXAMPLES.md).


## Project Information


### Where to get help

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


### Contribution guidelines

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


### Dependencies


#### Efferent (fan-out)

None.


#### Development Dependencies

None (currently).


#### Afferent (fan-in)

* [**libCLImate.Python**](https://github.com/synesissoftware/libCLImate.Python/)
  (**libclimate**);


### Related projects

* [**CLASP**](https://github.com/synesissoftware/CLASP/)
* [**CLASP.Go**](https://github.com/synesissoftware/CLASP.Go/)
* [**CLASP.js**](https://github.com/synesissoftware/CLASP.js/)
* [**CLASP.NET**](https://github.com/synesissoftware/CLASP.NET/)
* [**CLASP.Ruby**](https://github.com/synesissoftware/CLASP.Ruby/)
* [**libCLImate.Ruby**](https://github.com/synesissoftware/libCLImate.Ruby/)


### License

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


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

