recon-github 0.1.0__tar.gz → 0.1.3__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 (30) hide show
  1. {recon_github-0.1.0 → recon_github-0.1.3}/PKG-INFO +3 -3
  2. {recon_github-0.1.0 → recon_github-0.1.3}/README.md +2 -2
  3. {recon_github-0.1.0 → recon_github-0.1.3}/pyproject.toml +4 -1
  4. {recon_github-0.1.0 → recon_github-0.1.3}/recon_github.egg-info/PKG-INFO +3 -3
  5. {recon_github-0.1.0 → recon_github-0.1.3}/recon_github.egg-info/SOURCES.txt +1 -0
  6. recon_github-0.1.3/recon_github.egg-info/entry_points.txt +2 -0
  7. {recon_github-0.1.0 → recon_github-0.1.3}/LICENSE +0 -0
  8. {recon_github-0.1.0 → recon_github-0.1.3}/app/cli.py +0 -0
  9. {recon_github-0.1.0 → recon_github-0.1.3}/app/commands/auth.py +0 -0
  10. {recon_github-0.1.0 → recon_github-0.1.3}/app/commands/me.py +0 -0
  11. {recon_github-0.1.0 → recon_github-0.1.3}/app/commands/repo.py +0 -0
  12. {recon_github-0.1.0 → recon_github-0.1.3}/app/services/auth.py +0 -0
  13. {recon_github-0.1.0 → recon_github-0.1.3}/app/services/github.py +0 -0
  14. {recon_github-0.1.0 → recon_github-0.1.3}/app/services/github_errors.py +0 -0
  15. {recon_github-0.1.0 → recon_github-0.1.3}/app/services/storage.py +0 -0
  16. {recon_github-0.1.0 → recon_github-0.1.3}/app/ui/avatar.py +0 -0
  17. {recon_github-0.1.0 → recon_github-0.1.3}/app/ui/display.py +0 -0
  18. {recon_github-0.1.0 → recon_github-0.1.3}/app/ui/repo.py +0 -0
  19. {recon_github-0.1.0 → recon_github-0.1.3}/recon_github.egg-info/dependency_links.txt +0 -0
  20. {recon_github-0.1.0 → recon_github-0.1.3}/recon_github.egg-info/requires.txt +0 -0
  21. {recon_github-0.1.0 → recon_github-0.1.3}/recon_github.egg-info/top_level.txt +0 -0
  22. {recon_github-0.1.0 → recon_github-0.1.3}/setup.cfg +0 -0
  23. {recon_github-0.1.0 → recon_github-0.1.3}/tests/test_auth_service.py +0 -0
  24. {recon_github-0.1.0 → recon_github-0.1.3}/tests/test_cli.py +0 -0
  25. {recon_github-0.1.0 → recon_github-0.1.3}/tests/test_cli_commands.py +0 -0
  26. {recon_github-0.1.0 → recon_github-0.1.3}/tests/test_github_errors.py +0 -0
  27. {recon_github-0.1.0 → recon_github-0.1.3}/tests/test_github_service.py +0 -0
  28. {recon_github-0.1.0 → recon_github-0.1.3}/tests/test_repo_helpers.py +0 -0
  29. {recon_github-0.1.0 → recon_github-0.1.3}/tests/test_storage.py +0 -0
  30. {recon_github-0.1.0 → recon_github-0.1.3}/tests/test_ui_repo.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: recon-github
3
- Version: 0.1.0
3
+ Version: 0.1.3
4
4
  Summary: Recon is a powerful CLI companion for developers and tools for agents, turning GitHub activity and repository data into useful insights from your terminal
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -45,11 +45,11 @@ It is powered by [Typer](github.com/fastapi/typer), a library for building fast
45
45
  Since we want you to be able to use Recon from anywhere - not just one directory - we recomend you install it with [uv package manager](https://docs.astral.sh/uv/getting-started/installation/).
46
46
 
47
47
  ```bash
48
- uv tool install recon-gh
48
+ uv tool install recon-github
49
49
  ```
50
50
  For the best experience, then login to your GitHub account (this step is not strictly required).
51
51
  ```bash
52
- recon login
52
+ recon login
53
53
  ```
54
54
  ## Usage
55
55
 
@@ -31,11 +31,11 @@ It is powered by [Typer](github.com/fastapi/typer), a library for building fast
31
31
  Since we want you to be able to use Recon from anywhere - not just one directory - we recomend you install it with [uv package manager](https://docs.astral.sh/uv/getting-started/installation/).
32
32
 
33
33
  ```bash
34
- uv tool install recon-gh
34
+ uv tool install recon-github
35
35
  ```
36
36
  For the best experience, then login to your GitHub account (this step is not strictly required).
37
37
  ```bash
38
- recon login
38
+ recon login
39
39
  ```
40
40
  ## Usage
41
41
 
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "recon-github"
3
- version = "0.1.0"
3
+ version = "0.1.3"
4
4
  description = "Recon is a powerful CLI companion for developers and tools for agents, turning GitHub activity and repository data into useful insights from your terminal"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.12"
@@ -22,6 +22,9 @@ dev = [
22
22
  "ruff>=0.12.0",
23
23
  ]
24
24
 
25
+ [project.scripts] # Entrypoint for the pypi application
26
+ recon = "app.main:app"
27
+
25
28
  [tool.pytest.ini_options]
26
29
  pythonpath = ["."]
27
30
  # Use a project-local temp directory to avoid Windows pytest temp-folder permission issues.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: recon-github
3
- Version: 0.1.0
3
+ Version: 0.1.3
4
4
  Summary: Recon is a powerful CLI companion for developers and tools for agents, turning GitHub activity and repository data into useful insights from your terminal
5
5
  Requires-Python: >=3.12
6
6
  Description-Content-Type: text/markdown
@@ -45,11 +45,11 @@ It is powered by [Typer](github.com/fastapi/typer), a library for building fast
45
45
  Since we want you to be able to use Recon from anywhere - not just one directory - we recomend you install it with [uv package manager](https://docs.astral.sh/uv/getting-started/installation/).
46
46
 
47
47
  ```bash
48
- uv tool install recon-gh
48
+ uv tool install recon-github
49
49
  ```
50
50
  For the best experience, then login to your GitHub account (this step is not strictly required).
51
51
  ```bash
52
- recon login
52
+ recon login
53
53
  ```
54
54
  ## Usage
55
55
 
@@ -15,6 +15,7 @@ app/ui/repo.py
15
15
  recon_github.egg-info/PKG-INFO
16
16
  recon_github.egg-info/SOURCES.txt
17
17
  recon_github.egg-info/dependency_links.txt
18
+ recon_github.egg-info/entry_points.txt
18
19
  recon_github.egg-info/requires.txt
19
20
  recon_github.egg-info/top_level.txt
20
21
  tests/test_auth_service.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ recon = app.main:app
File without changes
File without changes
File without changes