repr-cli 0.2.1__tar.gz → 0.2.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 (37) hide show
  1. {repr_cli-0.2.1/repr_cli.egg-info → repr_cli-0.2.2}/PKG-INFO +1 -1
  2. {repr_cli-0.2.1 → repr_cli-0.2.2}/pyproject.toml +1 -1
  3. repr_cli-0.2.2/repr/__main__.py +6 -0
  4. {repr_cli-0.2.1 → repr_cli-0.2.2/repr_cli.egg-info}/PKG-INFO +1 -1
  5. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr_cli.egg-info/SOURCES.txt +1 -0
  6. {repr_cli-0.2.1 → repr_cli-0.2.2}/LICENSE +0 -0
  7. {repr_cli-0.2.1 → repr_cli-0.2.2}/README.md +0 -0
  8. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/__init__.py +0 -0
  9. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/api.py +0 -0
  10. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/auth.py +0 -0
  11. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/cli.py +0 -0
  12. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/config.py +0 -0
  13. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/discovery.py +0 -0
  14. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/doctor.py +0 -0
  15. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/extractor.py +0 -0
  16. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/hooks.py +0 -0
  17. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/keychain.py +0 -0
  18. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/llm.py +0 -0
  19. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/openai_analysis.py +0 -0
  20. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/privacy.py +0 -0
  21. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/storage.py +0 -0
  22. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/templates.py +0 -0
  23. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/tools.py +0 -0
  24. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr/ui.py +0 -0
  25. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr_cli.egg-info/dependency_links.txt +0 -0
  26. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr_cli.egg-info/entry_points.txt +0 -0
  27. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr_cli.egg-info/requires.txt +0 -0
  28. {repr_cli-0.2.1 → repr_cli-0.2.2}/repr_cli.egg-info/top_level.txt +0 -0
  29. {repr_cli-0.2.1 → repr_cli-0.2.2}/setup.cfg +0 -0
  30. {repr_cli-0.2.1 → repr_cli-0.2.2}/setup.py +0 -0
  31. {repr_cli-0.2.1 → repr_cli-0.2.2}/tests/test_environment_variables.py +0 -0
  32. {repr_cli-0.2.1 → repr_cli-0.2.2}/tests/test_network_sandboxing.py +0 -0
  33. {repr_cli-0.2.1 → repr_cli-0.2.2}/tests/test_privacy_guarantees.py +0 -0
  34. {repr_cli-0.2.1 → repr_cli-0.2.2}/tests/test_profile_export.py +0 -0
  35. {repr_cli-0.2.1 → repr_cli-0.2.2}/tests/test_repo_identity.py +0 -0
  36. {repr_cli-0.2.1 → repr_cli-0.2.2}/tests/test_stories_review.py +0 -0
  37. {repr_cli-0.2.1 → repr_cli-0.2.2}/tests/test_token_budget.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: repr-cli
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: A beautiful, privacy-first CLI that analyzes your code repositories and generates a compelling developer profile
5
5
  Author-email: Repr <hello@repr.dev>
6
6
  License: MIT
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "repr-cli"
7
- version = "0.2.1"
7
+ version = "0.2.2"
8
8
  description = "A beautiful, privacy-first CLI that analyzes your code repositories and generates a compelling developer profile"
9
9
  readme = "README.md"
10
10
  license = {text = "MIT"}
@@ -0,0 +1,6 @@
1
+ """Entry point for running repr as a module: python -m repr"""
2
+ from repr.cli import app
3
+
4
+ if __name__ == "__main__":
5
+ app()
6
+
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: repr-cli
3
- Version: 0.2.1
3
+ Version: 0.2.2
4
4
  Summary: A beautiful, privacy-first CLI that analyzes your code repositories and generates a compelling developer profile
5
5
  Author-email: Repr <hello@repr.dev>
6
6
  License: MIT
@@ -3,6 +3,7 @@ README.md
3
3
  pyproject.toml
4
4
  setup.py
5
5
  repr/__init__.py
6
+ repr/__main__.py
6
7
  repr/api.py
7
8
  repr/auth.py
8
9
  repr/cli.py
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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes