Metadata-Version: 2.4
Name: yapping
Version: 1.1.0
Author: Ferran Jovell
License: MIT License
        
        Copyright (c) 2026 Ferran Jovell
        
        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: source, https://github.com/mrswats/yapping/
Requires-Python: >=3.14.1
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: pip-tools
Requires-Dist: tomli-w
Provides-Extra: test
Requires-Dist: covdefaults; extra == "test"
Requires-Dist: pytest; extra == "test"
Requires-Dist: pytest-cov; extra == "test"
Requires-Dist: pytest-randomly; extra == "test"
Requires-Dist: pytest-xdist; extra == "test"
Requires-Dist: time-machine; extra == "test"
Provides-Extra: build
Requires-Dist: build; extra == "build"
Requires-Dist: twine; extra == "build"
Dynamic: license-file

# Yapping

Yet another python packaging manager.

But it is basically a thin wrapper around
[`pip-tools`](https://github.com/jazzband/pip-tools) which also adds and
removes dependencies from pyproject's `dependency` list.

## Installation:

```
pip install yapping
```

## Usage:

Using `yap` is very easy:

```console
yap add '<foo>'
yap rm '<foo>'
yap compile
yap version <version_upgrade_type>
```

You can also call the module directly, like:

```console
python -m yapping <...>
```

## Why you should use `yap`?

You should not. This is my personal pet project.
But, the good thing about it is that it does not lock you into it besides using
`pip-tools` for compiling the dependencies.

## Development

### Virtual Environment

Create a virtual Environment

```
virtualenv .venv -p pytthon 3.14
source .venv/bin/activate
```

### Tests

Using pytest for Tests

```
python -m pytest
```

### Formatting and Linting

Using pre-commit for linting and formatting

```
pre-commit install
pre-commit run --all-files
```

## Changelog

## v0.6.0

Add `init` command to create scaffolding `pyproject.toml` file.

## v0.5.0

Add support for `optional-dependencies`.

## v0.4.0

Fixed an issue when running `yap` through `pipx` in which the `pip-compile` binary was not found.

## v0.3.0

Add the new `version` command to manage versions in `pyproject.toml`.

## v0.2.0

Add `--version` flag to check the version of the tool.

## v0.1.0

First release of the project. `add`, `rm`, `compile` commands.
