pltr-cli 0.1.1__tar.gz → 0.1.2__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (53) hide show
  1. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/.github/workflows/publish.yml +1 -1
  2. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/PKG-INFO +1 -1
  3. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/pyproject.toml +1 -1
  4. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/uv.lock +1 -1
  5. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/.github/workflows/ci.yml +0 -0
  6. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/.github/workflows/test-publish.yml +0 -0
  7. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/.gitignore +0 -0
  8. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/CLAUDE.md +0 -0
  9. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/DEVELOPMENT_PLAN.md +0 -0
  10. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/LICENSE +0 -0
  11. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/README.md +0 -0
  12. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/mypy.ini +0 -0
  13. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/scripts/release.py +0 -0
  14. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/__init__.py +0 -0
  15. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/auth/__init__.py +0 -0
  16. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/auth/base.py +0 -0
  17. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/auth/manager.py +0 -0
  18. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/auth/oauth.py +0 -0
  19. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/auth/storage.py +0 -0
  20. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/auth/token.py +0 -0
  21. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/cli.py +0 -0
  22. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/commands/__init__.py +0 -0
  23. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/commands/configure.py +0 -0
  24. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/commands/dataset.py +0 -0
  25. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/commands/verify.py +0 -0
  26. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/config/__init__.py +0 -0
  27. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/config/profiles.py +0 -0
  28. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/config/settings.py +0 -0
  29. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/services/__init__.py +0 -0
  30. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/services/base.py +0 -0
  31. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/services/dataset.py +0 -0
  32. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/services/dataset_full.py +0 -0
  33. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/services/dataset_v2.py +0 -0
  34. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/utils/__init__.py +0 -0
  35. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/utils/formatting.py +0 -0
  36. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/src/pltr/utils/progress.py +0 -0
  37. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/__init__.py +0 -0
  38. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/conftest.py +0 -0
  39. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_auth/__init__.py +0 -0
  40. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_auth/test_base.py +0 -0
  41. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_auth/test_manager.py +0 -0
  42. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_auth/test_oauth.py +0 -0
  43. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_auth/test_storage.py +0 -0
  44. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_auth/test_token.py +0 -0
  45. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_commands/__init__.py +0 -0
  46. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_commands/test_dataset.py +0 -0
  47. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_commands/test_verify_simple.py +0 -0
  48. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_config/__init__.py +0 -0
  49. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_config/test_profiles.py +0 -0
  50. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_config/test_settings.py +0 -0
  51. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_services/__init__.py +0 -0
  52. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_services/test_base.py +0 -0
  53. {pltr_cli-0.1.1 → pltr_cli-0.1.2}/tests/test_services/test_dataset.py +0 -0
@@ -98,7 +98,7 @@ jobs:
98
98
  path: dist/
99
99
 
100
100
  - name: Sign the dists with Sigstore
101
- uses: sigstore/gh-action-sigstore-python@v2.1.1
101
+ uses: sigstore/gh-action-sigstore-python@v3.0.1
102
102
  with:
103
103
  inputs: >-
104
104
  ./dist/*.tar.gz
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pltr-cli
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: Command-line interface for Palantir Foundry APIs
5
5
  Project-URL: Homepage, https://github.com/anjor/pltr-cli
6
6
  Project-URL: Repository, https://github.com/anjor/pltr-cli
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pltr-cli"
3
- version = "0.1.1"
3
+ version = "0.1.2"
4
4
  description = "Command-line interface for Palantir Foundry APIs"
5
5
  authors = [
6
6
  { name = "anjor", email = "anjor@umd.edu" }
@@ -615,7 +615,7 @@ wheels = [
615
615
 
616
616
  [[package]]
617
617
  name = "pltr-cli"
618
- version = "0.1.1"
618
+ version = "0.1.2"
619
619
  source = { editable = "." }
620
620
  dependencies = [
621
621
  { name = "foundry-platform-sdk" },
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes