pltr-cli 0.1.0__tar.gz → 0.1.1__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.0 → pltr_cli-0.1.1}/DEVELOPMENT_PLAN.md +37 -2
  2. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/PKG-INFO +2 -2
  3. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/README.md +1 -1
  4. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/pyproject.toml +1 -1
  5. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/uv.lock +504 -503
  6. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/.github/workflows/ci.yml +0 -0
  7. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/.github/workflows/publish.yml +0 -0
  8. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/.github/workflows/test-publish.yml +0 -0
  9. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/.gitignore +0 -0
  10. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/CLAUDE.md +0 -0
  11. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/LICENSE +0 -0
  12. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/mypy.ini +0 -0
  13. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/scripts/release.py +0 -0
  14. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/__init__.py +0 -0
  15. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/__init__.py +0 -0
  16. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/base.py +0 -0
  17. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/manager.py +0 -0
  18. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/oauth.py +0 -0
  19. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/storage.py +0 -0
  20. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/auth/token.py +0 -0
  21. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/cli.py +0 -0
  22. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/commands/__init__.py +0 -0
  23. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/commands/configure.py +0 -0
  24. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/commands/dataset.py +0 -0
  25. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/commands/verify.py +0 -0
  26. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/config/__init__.py +0 -0
  27. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/config/profiles.py +0 -0
  28. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/config/settings.py +0 -0
  29. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/__init__.py +0 -0
  30. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/base.py +0 -0
  31. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/dataset.py +0 -0
  32. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/dataset_full.py +0 -0
  33. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/services/dataset_v2.py +0 -0
  34. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/utils/__init__.py +0 -0
  35. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/utils/formatting.py +0 -0
  36. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/src/pltr/utils/progress.py +0 -0
  37. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/__init__.py +0 -0
  38. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/conftest.py +0 -0
  39. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/__init__.py +0 -0
  40. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_base.py +0 -0
  41. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_manager.py +0 -0
  42. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_oauth.py +0 -0
  43. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_storage.py +0 -0
  44. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_auth/test_token.py +0 -0
  45. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_commands/__init__.py +0 -0
  46. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_commands/test_dataset.py +0 -0
  47. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_commands/test_verify_simple.py +0 -0
  48. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_config/__init__.py +0 -0
  49. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_config/test_profiles.py +0 -0
  50. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_config/test_settings.py +0 -0
  51. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_services/__init__.py +0 -0
  52. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_services/test_base.py +0 -0
  53. {pltr_cli-0.1.0 → pltr_cli-0.1.1}/tests/test_services/test_dataset.py +0 -0
@@ -342,5 +342,40 @@ Test releases on TestPyPI before production:
342
342
 
343
343
  After PyPI publishing:
344
344
  1. Configure Trusted Publishing on PyPI (first release only)
345
- 2. Monitor package availability: https://pypi.org/project/pltr/
346
- 3. Test installation: `pip install pltr`
345
+ 2. Monitor package availability: https://pypi.org/project/pltr-cli/
346
+ 3. Test installation: `pip install pltr-cli`
347
+
348
+ ## Release History
349
+
350
+ ### Version 0.1.0 (2025-08-10) ✅ RELEASED
351
+
352
+ **First production release of pltr-cli to PyPI!**
353
+
354
+ - **Published to PyPI**: https://pypi.org/project/pltr-cli/0.1.0/
355
+ - **Installation**: `pip install pltr-cli`
356
+ - **GitHub Tag**: v0.1.0
357
+
358
+ **Core Features:**
359
+ - Complete authentication system with token and OAuth2 support
360
+ - Secure credential storage using keyring
361
+ - Multi-profile configuration management
362
+ - Dataset operations (get, create) using foundry-platform-sdk v1.27.0
363
+ - Rich terminal output with table formatting
364
+ - Comprehensive test suite (126 tests, ~65% coverage)
365
+ - Cross-platform compatibility (Windows, macOS, Linux)
366
+
367
+ **Distribution:**
368
+ - Automated PyPI publishing via GitHub Actions with Trusted Publishing
369
+ - Built with uv for modern Python dependency management
370
+ - Full CI/CD pipeline with linting, type checking, and multi-Python testing
371
+ - Sigstore signing for security attestation (GitHub Release creation had minor issues)
372
+
373
+ **Known Limitations:**
374
+ - Dataset operations are RID-based only (SDK v1.27.0 limitations)
375
+ - No dataset listing/browsing capabilities
376
+ - Ontology and SQL commands not yet implemented
377
+
378
+ **Next Steps:**
379
+ - Phase 4: Implement ontology commands
380
+ - Phase 5: Add SQL query support
381
+ - Phase 6: Admin commands for user/group management
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pltr-cli
3
- Version: 0.1.0
3
+ Version: 0.1.1
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
@@ -56,7 +56,7 @@ A command-line interface tool for interacting with Palantir Foundry APIs.
56
56
  ### Using pip
57
57
 
58
58
  ```bash
59
- pip install pltr
59
+ pip install pltr-cli
60
60
  ```
61
61
 
62
62
  ### From source
@@ -20,7 +20,7 @@ A command-line interface tool for interacting with Palantir Foundry APIs.
20
20
  ### Using pip
21
21
 
22
22
  ```bash
23
- pip install pltr
23
+ pip install pltr-cli
24
24
  ```
25
25
 
26
26
  ### From source
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pltr-cli"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Command-line interface for Palantir Foundry APIs"
5
5
  authors = [
6
6
  { name = "anjor", email = "anjor@umd.edu" }