Skip to content

docs: install the correct PyPI distribution name - #52

Merged
imran-siddique merged 1 commit into
mainfrom
fix/docs-correct-pypi-package-name
Aug 7, 2026
Merged

docs: install the correct PyPI distribution name#52
imran-siddique merged 1 commit into
mainfrom
fix/docs-correct-pypi-package-name

Conversation

@imran-siddique

Copy link
Copy Markdown
Contributor

README.md and docs/quickstart.md both tell users to run:

pip install trace-tests

That 404s. The distribution is agentrust-trace-tests; trace-tests is the console script it installs (trace-tests = "trace_tests.cli:main" in pyproject.toml), which is where the mix-up comes from.

Verified against PyPI:

URL Status
https://pypi.org/pypi/trace-tests/json 404
https://pypi.org/pypi/agentrust-trace-tests/json 200

Both occurrences fixed, plus one line in the quickstart naming the distinction so it does not get reintroduced. The trace-tests verify ... invocations are correct and untouched.

Found while auditing every pip install instruction across the agentrust-io repos; this was one of two documented packages that did not resolve.

README and the quickstart both say `pip install trace-tests`. That returns
404: the distribution on PyPI is `agentrust-trace-tests`. `trace-tests` is
the console script it installs, declared in pyproject as
`trace-tests = "trace_tests.cli:main"`, which is where the confusion comes
from.

Verified: https://pypi.org/pypi/trace-tests/json is 404,
https://pypi.org/pypi/agentrust-trace-tests/json is 200.

Every documented install command in the repo now resolves. Left the command
invocations alone, since `trace-tests verify ...` is correct.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
Signed-off-by: Imran Siddique <imran.siddique@opaque.co>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant