Metadata-Version: 2.4
Name: tlogo
Version: 0.0.1
Summary: Sequence logo generator for aligned FASTA files
Author-email: Troy Sincomb <troysincomb@gmail.com>
License: MIT
Keywords: bioinformatics,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
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
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Scientific/Engineering :: Bio-Informatics
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: click>=8.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Dynamic: license-file

# tlogo

Sequence logo generator for aligned FASTA files

## Install

```bash
pip install tlogo
```

## Development

```bash
git clone https://github.com/tmsincomb/tlogo.git
cd tlogo
pip install -e ".[dev]"
```

## Usage

```bash
tlogo --help
tlogo hello
tlogo hello YourName
```

## Testing

```bash
pytest -v
```

## Releasing

Version is managed automatically by [setuptools-scm](https://github.com/pypa/setuptools-scm) from git tags:

```bash
git tag v0.1.0
git push origin v0.1.0
```

PyPI publishing is handled by GitHub Actions via trusted publishing (OIDC). Configure your PyPI project to trust the `publish.yml` workflow.

## License

MIT
