Add Apache-2.0 LICENSE and NOTICE files#30
Merged
Conversation
Closes #29. The crate already declares `license = "Apache-2.0"` in Cargo.toml, but the repository had no LICENSE file, so the GitHub API reported `license: null` and `/LICENSE` 404'd — leaving redistribution ambiguous (default all-rights-reserved). Add the standard Apache-2.0 license text to match both the declared crate license and the upstream NVIDIA NeMo-text-processing project this is a port of. Also add a NOTICE file attributing the upstream NeMo source per Apache-2.0 §4(d). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
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.
Closes #29.
Problem
The crate already declares
license = "Apache-2.0"inCargo.toml, but the repository had noLICENSEfile. As a result the GitHub API reportslicense: nulland/LICENSEreturns 404, leaving redistribution legally ambiguous (the default being all rights reserved). This blocks downstream adoption in shipped products.Change
LICENSE), matching the declared crate license and the upstream NVIDIA NeMo-text-processing project this is a port of (also Apache-2.0, so fully compatible).NOTICEfile attributing the upstream NeMo source, per Apache-2.0 §4(d), since this is a derivative work.After merge, GitHub will detect the license and the API will report
Apache-2.0.🤖 Generated with Claude Code