Metadata-Version: 2.1
Name: reqs-sync
Version: 0.1
Summary: null
Author: saaspegasus
License: Apache-2.0
Project-URL: Homepage, https://github.com/saaspegasus/reqs-sync
Project-URL: Changelog, https://github.com/saaspegasus/reqs-sync/releases
Project-URL: Issues, https://github.com/saaspegasus/reqs-sync/issues
Project-URL: CI, https://github.com/saaspegasus/reqs-sync/actions
Classifier: License :: OSI Approved :: Apache Software License
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click
Requires-Dist: tomlkit

# reqs-sync

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

A minimal tool to sync requirements to a pyproject.toml file from a pip-tools requirements.in file.

## Installation

Install this tool using `pip`:
```bash
pip install reqs-sync
```
## Usage

For help, run:
```bash
reqs-sync --help
```
You can also use:
```bash
python -m reqs_sync --help
```
## Development

To contribute to this tool, first checkout the code. Then create a new virtual environment:
```bash
cd reqs-sync
uv sync
```

To run the tests:
```bash
uv run --group=test pytest
```
