Metadata-Version: 2.4
Name: minecraft-textcraft
Version: 0.0.1
Summary: A Python package that converts text into blocky Minecraft-style ASCII art...
License-Expression: GPL-3.0-or-later
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Education
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: build; extra == "dev"
Dynamic: license-file

# minecraft-textcraft

A Python package that converts text into blocky Minecraft-style ASCII art, with support for special inline commands like \sword, \heart, and \diamond. Commands are center-aligned with text for a professional, visually appealing output.

# Quickstart

To setup:
```bash
git clone git@github.com:swe-students-fall2025/3-python-package-brio.git
cd 3-python-package-brio
pipenv shell
pipenv install -e ".[dev]"
```

To build:
```bash
pipenv run python -m build
```
Artifacts will be in `dist/`.

To run:
```bash
pipenv run minecraft-textcraft
```

To run tests:
```bash
pipenv run pytest
```

