Move stuff over from previous incarnation into new frame

Thanks to Simon Wilson for the layout
This commit is contained in:
John Doty 2024-07-08 07:32:37 +09:00
commit 6be6afdbc3
15 changed files with 799 additions and 0 deletions

41
README.md Normal file
View file

@ -0,0 +1,41 @@
# cry
[![PyPI](https://img.shields.io/pypi/v/cry.svg)](https://pypi.org/project/cry/)
[![Changelog](https://img.shields.io/github/v/release/decarabas/cry?include_prereleases&label=changelog)](https://github.com/decarabas/cry/releases)
[![Tests](https://github.com/decarabas/cry/actions/workflows/test.yml/badge.svg)](https://github.com/decarabas/cry/actions/workflows/test.yml)
[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](https://github.com/decarabas/cry/blob/master/LICENSE)
Command line feed reader
## Installation
Install this tool using `pip`:
```bash
pip install cry
```
## Usage
For help, run:
```bash
cry --help
```
You can also use:
```bash
python -m cry --help
```
## Development
To contribute to this tool, first checkout the code. Then create a new virtual environment:
```bash
cd cry
python -m venv venv
source venv/bin/activate
```
Now install the dependencies and test dependencies:
```bash
pip install -e '.[test]'
```
To run the tests:
```bash
pytest
```