Metadata-Version: 2.1
Name: pylagg
Version: 0.1.3
Summary: A CLI tool for creating images from genome data
Author: Robert Fitak
Author-email: rfitak9@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: mypy (>=1.9.0,<2.0.0)
Requires-Dist: numpy (>=1.26.4,<2.0.0)
Requires-Dist: pillow (>=10.2.0,<11.0.0)
Requires-Dist: pytest (>=8.1.1,<9.0.0)
Requires-Dist: tqdm (>=4.66.4,<5.0.0)
Requires-Dist: typer (>=0.11.1,<0.12.0)
Description-Content-Type: text/markdown

# LAGG
A CLI tool for generating chaos graphs from DNA sequences.


## For Contributors
We use [Poetry](https://python-poetry.org) to handle dependencies and build the project.
Installation instructions can be found [here](https://python-poetry.org/docs/#installation).

### Install Dependencies
Use `poetry install` to install all dependencies automatically in a new virtual environment.
If you'd like to install the dependencies directly within the project directory, type the following command:
```
poetry config virtualenvs.in-project true
```

### Running Tests
To run tests, first, activate the virtual environment using `poetry shell`.

Use `pytest` to run all tests in the backend.

