Metadata-Version: 2.4
Name: mimyo
Version: 0.1.1
Summary: A terminal-based music player
Author: Isht4ros
License: MIT
Project-URL: Homepage, https://github.com/Isht4ros
Keywords: music,player,terminal,tui,textual
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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: Topic :: Multimedia :: Sound/Audio :: Players
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: textual>=0.50.0
Requires-Dist: pygame-ce>=2.4.0
Requires-Dist: mutagen>=1.47.0
Requires-Dist: Pillow>=10.0.0
Requires-Dist: yt-dlp>=2024.1.0
Requires-Dist: sixel>=0.2.0
Provides-Extra: discord
Requires-Dist: pypresence; extra == "discord"
Dynamic: license-file

# mimyo

A terminal-based music player built with [Textual](https://github.com/Textualize/textual).

## Features

- Terminal UI music playback
- Album art rendering (including sixel support on compatible terminals)
- Playlist / queue management
- YouTube track support
- Optional Discord rich presence integration

## Installation

```bash
pip install mimyo
```

For Discord rich presence:

```bash
pip install "mimyo[discord]"
```

## Usage

```bash
mimyo
```

or, without installing:

```bash
python -m player
```

By default, mimyo looks for a `Music` folder in your home directory. To point it at a
different folder (remembered for all future launches):

```bash
mimyo --path "D:\Music"
# or short form:
mimyo -p "D:\Music"
```

## License

MIT — see [LICENSE](LICENSE).
