Document and implement openfga-cli-py Python wrapper package - #1
Merged
Conversation
- Documents full project structure mirroring shellcheck-py pattern - Defines platform matrix (8 platforms) with SHA-256 hashes for v0.7.19 - Specifies setup.cfg/setup.py using setuptools-download - Covers GitHub Actions 3-job workflow: build-test, publish-pypi, publish-github-release (whl assets uploaded to GitHub Release) - Defines update_version.sh contract for new upstream releases - Includes pre-commit hook support (.pre-commit-hooks.yaml) - 12 acceptance criteria and 12 validation criteria Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
- Add setup.cfg with 8-platform binary download matrix for v0.7.19 with SHA-256 checksums (REQ-001 to REQ-004) - Add setup.py with bdist_wheel subclass for platform-tagged wheels (CON-004) - Add update_version.sh to regenerate setup.cfg for new upstream releases (REQ-005) - Add .github/workflows/main.yml: build-and-test matrix, publish-pypi, and publish-github-release jobs (REQ-006 to REQ-009, SEC-002 to SEC-004) - Add .pre-commit-hooks.yaml defining the fga hook (REQ-010) - Add .pre-commit-config.yaml for repo-level hook config - Add tox.ini with smoke tests (fga version, fga help) and pre-commit env - Update README.md with install, usage, pre-commit, and edge-case docs - Add tests/test_package.py with 28 tests covering ACs 001, 002, 006, 008 and structural validation of setup.cfg, setup.py, and pre-commit hooks - Add pytest.ini Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.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.
with SHA-256 checksums (REQ-001 to REQ-004)
and publish-github-release jobs (REQ-006 to REQ-009, SEC-002 to SEC-004)
and structural validation of setup.cfg, setup.py, and pre-commit hooks