Metadata-Version: 2.1
Name: package-dev-utils
Version: 0.1.3
Summary: Common development utilities for Python packages
Author-email: Quinten Roets <qdr2104@columbia.edu>
License: MIT
Project-URL: Source Code, https://github.com/quintenroets/package-dev-utils
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: hypothesis <7,>=6.91 ; extra == 'dev'
Requires-Dist: package-dev-tools <1,>=0.3.1 ; extra == 'dev'

# Package Dev Utils
[![PyPI version](https://badge.fury.io/py/package-dev-utils.svg)](https://badge.fury.io/py/package-dev-utils)
![Python version](https://img.shields.io/badge/python-3.10+-brightgreen)
![Operating system](https://img.shields.io/badge/os-linux%20%7c%20macOS%20%7c%20windows-brightgreen)
![Coverage](https://img.shields.io/badge/coverage-100%25-brightgreen)

## Usage
```python
from package_dev_utils.tests.args import cli_args


@cli_args("--debug")
def test_debugging() -> None:
    ...


def test_authentication() -> None:
    token = extract_token()
    with cli_args("--token", token):
        ...
```
## Installation
```shell
pip install package-dev-utils
```
