Metadata-Version: 2.4
Name: tini-editor
Version: 0.1.4
Summary: A tiny terminal text editor built with Textual
Home-page: https://codeberg.org/WolfQuery/tini-editor
Author: WolfQuery
License: CC-BY-NC-SA-4.0
Keywords: textual,terminal,text editor,nano,tini
Classifier: Programming Language :: Python :: 3
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.12
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: textual
Dynamic: author
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# tini-editor 📝

**tini** is a minimal, terminal-based text editor built with [Textual](https://textual.textualize.io/). It's inspired by `nano`, but written in Python and designed for simplicity and speed.

## ✨ Features

- Open and edit any text file from the terminal
- Keyboard shortcuts:
  - `Ctrl+S` – Save
  - `Ctrl+Q` – Quit
- Built with the modern [Textual](https://textual.textualize.io/) TUI framework

---

## 🚀 Installation

```bash
pip install tini-editor
````

---

## 🧑‍💻 Usage

```bash
tini <filename>
```

Example:

```bash
tini notes.txt
```

If the file doesn’t exist, it will be created when saved.

---

## 📦 Development Setup

Clone the repo and install dependencies:

```bash
git clone https://codeberg.org/yourusername/tini-editor.git
cd tini-editor
pip install -e .
```

Run locally:

```bash
python -m tini.app <filename>
```

---

## 📄 License

This project is licensed under the MIT License.

---

## 🙏 Acknowledgments

* Built with [Textual](https://github.com/Textualize/textual)
* Inspired by `nano`, but even tinier

```

Let me know if you’d like to add screenshots, badges (like PyPI, license, etc.), or contribute instructions.
```
