Add PyPI compliance metadata to all four publishable packages - #160
Open
sdavtaker wants to merge 1 commit into
Open
Add PyPI compliance metadata to all four publishable packages#160sdavtaker wants to merge 1 commit into
sdavtaker wants to merge 1 commit into
Conversation
This repo is a monorepo with four independently-published Python packages (toto-ts at root; toto-2, toto-models, dd-unit-scaling in subdirs). Apply the same compliance baseline to each, with per-package source URLs pointing at the relevant subdirectory. Per-package changes: - Add authors email (package@datadoghq.com) where missing. - Add [project.urls] (Homepage, Repository, Bug Tracker, Changelog). Repository points to the package's source subdir (repo root for toto-ts); Bug Tracker/Changelog are repo-level. - Add discoverability keywords. - dd-unit-scaling: add missing `license` and `authors` fields. No runtime, API, build-backend, or publishing-mechanism changes.
joconnor-ddog
approved these changes
Aug 17, 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.
Summary
Small compliance and metadata fixes applied independently to each of the four
publishable Python packages in this monorepo (
toto-tsat the repo root;toto-2,toto-models, anddd-unit-scalingin subdirectories). No runtime,API, build-backend, or publishing-mechanism changes.
Changes
pyproject.toml(toto-ts, repo root)package@datadoghq.comtoauthors.keywordsfor discoverability.[project.urls]withHomepage,Repository(repo root),Bug Tracker,and
Changelog.toto2/pyproject.toml(toto-2)package@datadoghq.comtoauthors.keywords.[project.urls];Repositorypoints to…/tree/main/toto2.toto_models/pyproject.toml(toto-models)package@datadoghq.comtoauthors.keywords.[project.urls];Repositorypoints to…/tree/main/toto_models.dd_unit_scaling/pyproject.toml(dd-unit-scaling)license = {text = "Apache-2.0"}.authors(withpackage@datadoghq.com).keywords.[project.urls];Repositorypoints to…/tree/main/dd_unit_scaling.Testing
Metadata-only change. Validated each
pyproject.tomlparses with Python'stomlliband that the[project.urls]keys render as expected. Verified eachsubdirectory package's
readme = "README.md"resolves within its own buildcontext (
python -m build <subdir>).