Add PyPI README files for toto-2, toto-models, and dd-unit-scaling#117
Merged
Conversation
- toto2/README.md: focused package page with features, all 5 model weight links, quick start, tutorials, evaluation links, and citation - toto_models/README.md: lightweight umbrella page linking out to toto-2 for full docs, includes package table and model weight links - Wire up readme = "README.md" in toto2/, toto_models/, and dd_unit_scaling/ pyproject.toml files so PyPI shows rich descriptions instead of blank project pages Co-authored-by: Cursor <cursoragent@cursor.com>
EmaadKhwaja
approved these changes
Jun 2, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What this does
Adds dedicated
README.mdfiles for the three packages that currently have no PyPI project description, and wires them up via thereadmefield in eachpyproject.toml.Without this, the PyPI pages for
toto-2,toto-models, anddd-unit-scalingwould show a blank project description after the upcoming releases.Changes
toto2/README.md(new): focused package page with features, all 5 model weight links (HF), quick start snippet with inference tips, tutorial notebook links, GIFT-Eval/BOOM evaluation links, and Toto 2.0 citationtoto_models/README.md(new): lightweight umbrella page — explains what the package installs (table of toto-2, dd-unit-scaling, toto-ts), model weights table, links out to toto-2 for full docstoto2/pyproject.toml: addreadme = "README.md", also improved the one-liner descriptiontoto_models/pyproject.toml: addreadme = "README.md"dd_unit_scaling/pyproject.toml: addreadme = "README.md"(README already existed, just wasn't wired up)Note on
../README.mdPointing to the root README via
../README.mdwas considered but is explicitly forbidden by PEP 621 ("Parent directory indicators (..) must not be used"). Each package needs its own README inside its subdirectory.Made with Cursor