Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "toon_format"
version = "0.9.0-beta.1"
dynamic = ["version"]
description = "A compact, human-readable serialization format designed for passing structured data to Large Language Models with significantly reduced token usage"
readme = "README.md"
authors = [
Expand Down Expand Up @@ -43,8 +43,12 @@ dev = [
"pytest-cov>=4.1.0",
"ruff>=0.8.0",
"mypy>=1.8.0",
"build",
]

[tool.hatch.version]
path = "src/toon_format/__init__.py"

[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
Expand Down
2 changes: 1 addition & 1 deletion src/toon_format/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
from .types import DecodeOptions, Delimiter, DelimiterKey, EncodeOptions
from .utils import compare_formats, count_tokens, estimate_savings

__version__ = "0.9.0-beta.1"
__version__ = "0.9.1"
__all__ = [
"encode",
"decode",
Expand Down
Loading