Metadata-Version: 2.1
Name: pypara
Version: 0.0.27
Summary: Currencies, Monetary Value Arithmetic/Conversion and Some Type Convenience
Author-email: Vehbi Sinan Tunalioglu <vst@vsthost.com>
License: BSD License
Project-URL: Homepage, https://github.com/vst/pypara
Project-URL: Documentation, https://github.com/vst/pypara#readme
Project-URL: Repository, https://github.com/vst/pypara.git
Project-URL: Changelog, https://github.com/vst/pypara/blob/main/CHANGELOG.md
Keywords: finance
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
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
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: python-dateutil (<3.0)

# Currencies, Monetary Value Objects, Arithmetic and Conversion

![](https://img.shields.io/pypi/v/pypara?style=flat-square)
![](https://img.shields.io/pypi/pyversions/pypara?style=flat-square)
![](https://img.shields.io/github/license/vst/pypara?style=flat-square)
![](https://img.shields.io/github/actions/workflow/status/vst/pypara/test.yml?style=flat-square)
![](https://img.shields.io/github/issues/vst/pypara?style=flat-square)
![](https://img.shields.io/github/last-commit/vst/pypara?style=flat-square)

> **TODO**: Provide a complete README.

## Development Notes

Enter the Nix shell:

```sh
nix-shell
```

Run the test suite:

```sh
tox
```

Alternatively:

```sh
nix-shell --argstr python python310 --run tox
nix-shell --argstr python python311 --run tox
```

## Publishing

Building a package and uploading it to PyPI is handled by the GitHub Action upon
successful GitHub Release (using Release Please Action).

However, in the event of emergency, you can still manually build a package and
upload it to PyPI:

```sh
rm -Rf dist/
python -m build
twine check dist/*
twine upload -s dist/*
```
