|
| 1 | +[project] |
| 2 | +name = "toon-format" |
| 3 | +version = "0.1.0" |
| 4 | +description = "Token-Oriented Object Notation – a token-efficient JSON alternative for LLM prompts" |
| 5 | +readme = "README.md" |
| 6 | +authors = [ |
| 7 | + { name = "Johann Schopplich", email = "[email protected]" } |
| 8 | +] |
| 9 | +requires-python = ">=3.10" |
| 10 | +dependencies = [] |
| 11 | +license = { text = "MIT" } |
| 12 | +keywords = ["toon", "serialization", "llm", "data-format", "token-efficient"] |
| 13 | +classifiers = [ |
| 14 | + "Development Status :: 3 - Alpha", |
| 15 | + "Intended Audience :: Developers", |
| 16 | + "License :: OSI Approved :: MIT License", |
| 17 | + "Programming Language :: Python :: 3", |
| 18 | + "Programming Language :: Python :: 3.10", |
| 19 | + "Programming Language :: Python :: 3.11", |
| 20 | + "Programming Language :: Python :: 3.12", |
| 21 | + "Programming Language :: Python :: 3.13", |
| 22 | + "Programming Language :: Python :: 3.14", |
| 23 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 24 | +] |
| 25 | + |
| 26 | +[project.urls] |
| 27 | +Homepage = "https://toonformat.dev" |
| 28 | +Repository = "https://github.com/toon-format/toon-python" |
| 29 | +Documentation = "https://github.com/toon-format/toon" |
| 30 | +"Bug Tracker" = "https://github.com/toon-format/toon-python/issues" |
| 31 | + |
| 32 | +[dependency-groups] |
| 33 | +dev = ["pytest>=8.0.0"] |
| 34 | + |
| 35 | +[tool.pytest.ini_options] |
| 36 | +testpaths = ["tests"] |
| 37 | +python_files = ["test_*.py"] |
| 38 | +python_functions = ["test_*"] |
| 39 | + |
| 40 | +[build-system] |
| 41 | +requires = ["uv_build>=0.9.7,<0.10.0"] |
| 42 | +build-backend = "uv_build" |
0 commit comments