Metadata-Version: 2.4
Name: ghops
Version: 0.5.0
Summary: A CLI tool for managing GitHub repos
Author-email: Alex Towell <lex@metafunctor.com>
Project-URL: Homepage, https://github.com/queelius/ghops
Project-URL: Source, https://github.com/queelius/ghops
Project-URL: Issues, https://github.com/queelius/ghops/issues
Keywords: git,github,automation,cli,devops
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Version Control :: Git
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: rich>=13.0.0
Requires-Dist: pathlib
Requires-Dist: toml
Dynamic: license-file

# ghops

![PyPI](https://img.shields.io/pypi/v/ghops)
![License](https://img.shields.io/pypi/l/ghops)
![Python Version](https://img.shields.io/pypi/pyversions/ghops)

`ghops` is a powerful command-line tool to streamline the management of your GitHub repositories. Whether you need to clone multiple repositories, keep them updated, or check their statuses, `ghops` provides an intuitive interface with rich, informative outputs.

For full documentation, please visit the [documentation site](https://queelius.github.io/ghops).

## Prerequisites

- **Python 3.7 or higher**
- **Git**: [Download Git](https://git-scm.com/downloads)
- **GitHub CLI (`gh`)**: [Install GitHub CLI](https://cli.github.com/)

> **Note**: `ghops` relies on the GitHub CLI (`gh`) for interacting with GitHub APIs. Make sure you are authenticated using `gh auth login` before using the tool.

## Installation

You can install `ghops` via `pip`:

```bash
pip install ghops
```

Or from source:

```bash
git clone https://github.com/queelius/ghops.git
cd ghops
make install
```

## Quick Start

```bash
# Clone all your repos
ghops get

# Update all repos in the current directory
ghops update -r

# Check the status of all repos
ghops status -r
```

## Contributing

Contributions are welcome! Please see the [Contributing Guide](contributing.md) for more details.

## License

This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

---

© 2025 [Alex Towell](https://github.com/queelius)
