Skip to content

Commit be59f51

Browse files
committed
from python-toon to toon_format
1 parent 0d25799 commit be59f51

6 files changed

Lines changed: 15 additions & 17 deletions

File tree

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,11 @@ body:
5151
description: |
5252
Please provide:
5353
- Python version
54-
- python-toon version (from `pip show python-toon`)
55-
- toon-format version
54+
- toon_format version (from `pip show toon_format`)
5655
- Operating system
5756
placeholder: |
5857
- Python 3.12.0
59-
- python-toon 1.0.0
60-
- toon-format 1.0.0
58+
- toon_format 1.0.0
6159
- macOS 14.0
6260
validations:
6361
required: true

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242
runs-on: ubuntu-latest
4343
environment:
4444
name: pypi
45-
url: https://pypi.org/p/python-toon
45+
url: https://pypi.org/p/toon_format
4646
permissions:
4747
id-token: write
4848

@@ -63,7 +63,7 @@ jobs:
6363
runs-on: ubuntu-latest
6464
environment:
6565
name: testpypi
66-
url: https://test.pypi.org/p/python-toon
66+
url: https://test.pypi.org/p/toon_format
6767
permissions:
6868
id-token: write
6969

PR_DESCRIPTION.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
This PR establishes the official Python implementation of the TOON (Token-Oriented Object Notation) format. TOON is a compact, human-readable serialization format designed for passing structured data to Large Language Models with 30-60% token reduction compared to JSON.
66

7-
This release migrates the complete implementation from the pytoon repository, adds comprehensive CI/CD infrastructure, and establishes the package as `python-toon` on PyPI.
7+
This release migrates the complete implementation from the pytoon repository, adds comprehensive CI/CD infrastructure, and establishes the package as `toon_format` on PyPI.
88

99
## Type of Change
1010

@@ -30,7 +30,7 @@ Initial release - no related issues.
3030
- Value normalization for Python-specific types (Decimal, datetime, etc.)
3131

3232
### Package Configuration
33-
- Package name: `python-toon` (PyPI)
33+
- Package name: `toon_format` (PyPI)
3434
- Module name: `toon_format` (Python import)
3535
- Version: 1.0.0
3636
- Python support: 3.8-3.14 (including 3.14t free-threaded)
@@ -231,7 +231,7 @@ Reduction: 52.0%
231231
## Additional Context
232232

233233
### Package Details
234-
- **PyPI Package**: `python-toon`
234+
- **PyPI Package**: `toon_format`
235235
- **Import Path**: `toon_format`
236236
- **CLI Command**: `toon`
237237
- **License**: MIT
@@ -242,10 +242,10 @@ Reduction: 52.0%
242242

243243
```bash
244244
# With pip
245-
pip install python-toon
245+
pip install toon_format
246246

247247
# With uv (recommended)
248-
uv pip install python-toon
248+
uv pip install toon_format
249249
```
250250

251251
### Development Setup

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@
33
A compact, human-readable serialization format designed for passing structured data to Large Language Models with significantly reduced token usage.
44

55
[![Tests](https://github.com/toon-format/toon-python/actions/workflows/test.yml/badge.svg)](https://github.com/toon-format/toon-python/actions)
6-
[![PyPI](https://img.shields.io/pypi/v/python-toon.svg)](https://pypi.org/project/python-toon/)
7-
[![Python Versions](https://img.shields.io/pypi/pyversions/python-toon.svg)](https://pypi.org/project/python-toon/)
6+
[![PyPI](https://img.shields.io/pypi/v/toon_format.svg)](https://pypi.org/project/toon_format/)
7+
[![Python Versions](https://img.shields.io/pypi/pyversions/toon_format.svg)](https://pypi.org/project/toon_format/)
88

99
## Installation
1010

1111
```bash
1212
# With pip
13-
pip install python-toon
13+
pip install toon_format
1414

1515
# With uv (recommended)
16-
uv pip install python-toon
16+
uv pip install toon_format
1717
```
1818

1919
## What is TOON?

examples.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
"""Examples demonstrating python-toon usage."""
1+
"""Examples demonstrating toon_format usage."""
22

33
from toon_format import encode
44

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[project]
2-
name = "python-toon"
2+
name = "toon_format"
33
version = "1.0.0"
44
description = "A compact, human-readable serialization format designed for passing structured data to Large Language Models with significantly reduced token usage"
55
readme = "README.md"

0 commit comments

Comments
 (0)