Conversation
- Move `packaging.sh` and `check_meta.sh` from root to misc/ directory - Update both scripts to use a more robust directory finding method - Update `check_meta.sh` to correctly compare Python version requirements
- PR management: `pr_autolabel.yml` + `pr-title-checker-config.json` - Lint, format and test: `compatibility_test.yml` + `minimal_test.yml` - Publish & Release: `publish_release.yml` + `release_drafter.yml` - Other: `badge_updater.yml`
- Expand the docstring to provide comprehensive information about torchmeter's features - Update project URL and author information - Add `py.typed` according to PEP 561 instructions
- Add `.coveragerc` to omit certain files or codes in coverage analysis - Add `pytest.ini` to set pytest options for parallel testing, code coverage, and test selection
…ng and formatting - Update rich component references in comments of `default_cfg.yaml` - Add `lint_format.sh` for code linting and formatting
- Update `MANIFEST.in` to include YAML files and exclude unnecessary folders - Update `requirements.txt` with new dependencies and version specifications - Update `setup.cfg` with project metadata, Python version requirements, and test dependencies - Add entry point for command line interface in `setup.py`
- Update PR title checker regex to include 'build' type and improve format - Add 'build' category to release drafter configuration - Modify release title to `torchmeter <version>` - Check of the tag's located branch switches from `master` to the version branch
- `ISSUE_TEMPLATE/config.yml`: the community (discussion forum) link has been opened. - `PULL_REQUEST_TEMPLATE.md`: update docs-related links
add following files: - `CONTRIBUTING.md` - `CONTRIBUTORS.md` - `CODE_OF_CONDUCT.md` - `CODEOWNERS`
- Add `misc/validate_pr_title.sh` script for PR title validation - Update `.gitignore` to exclude new directories and files - Add organization name to `LICENSE`
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.
Refactor to make the repo structure more concise and intuitive: see
miscdirectory.Add
py.typedto meet PEP-561 requirement.