Metadata-Version: 2.1
Name: saldo
Version: 0.1
Summary: calculate taxes to pay and net salary if you're a portuguese worker. Keep track of your balance (or "saldo")!
Author: Francisco Macedo
License: Apache-2.0
Project-URL: Homepage, https://github.com/franciscobmacedo/saldo
Project-URL: Changelog, https://github.com/franciscobmacedo/saldo/releases
Project-URL: Issues, https://github.com/franciscobmacedo/saldo/issues
Project-URL: CI, https://github.com/franciscobmacedo/saldo/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# saldo

[![PyPI](https://img.shields.io/pypi/v/saldo.svg)](https://pypi.org/project/saldo/)
[![Tests](https://github.com/franciscobmacedo/saldo/actions/workflows/test.yml/badge.svg)](https://github.com/franciscobmacedo/saldo/actions/workflows/test.yml)
[![Changelog](https://img.shields.io/github/v/release/franciscobmacedo/saldo?include_prereleases&label=changelog)](https://github.com/franciscobmacedo/saldo/releases)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/franciscobmacedo/saldo/blob/main/LICENSE)

calculate taxes to pay and net salary if you're a portuguese worker. Keep track of your balance (or \"saldo\")!

## Installation

Install this library using `pip`:
```bash
pip install saldo
```
## Usage

Usage instructions go here.

## Development

To contribute to this library, first checkout the code. Then create a new virtual environment:
```bash
cd saldo
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
python -m pip install -e '.[test]'
```
To run the tests:
```bash
python -m pytest
```
