repodoctor-cli 1.0.0__tar.gz → 1.0.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 (40) hide show
  1. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/PKG-INFO +16 -1
  2. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/README.md +15 -0
  3. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/pyproject.toml +1 -1
  4. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/PKG-INFO +16 -1
  5. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/setup.py +1 -1
  6. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/__init__.py +0 -0
  7. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/__main__.py +0 -0
  8. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/baseline.py +0 -0
  9. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/cli.py +0 -0
  10. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/duplicates.py +0 -0
  11. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/git.py +0 -0
  12. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/languages.py +0 -0
  13. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/linter.py +0 -0
  14. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/metrics.py +0 -0
  15. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/models.py +0 -0
  16. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/report.py +0 -0
  17. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/scanner.py +0 -0
  18. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/scoring.py +0 -0
  19. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/security.py +0 -0
  20. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/spinner.py +0 -0
  21. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/structure.py +0 -0
  22. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/todos.py +0 -0
  23. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/SOURCES.txt +0 -0
  24. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/dependency_links.txt +0 -0
  25. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/entry_points.txt +0 -0
  26. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/top_level.txt +0 -0
  27. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/setup.cfg +0 -0
  28. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_baseline.py +0 -0
  29. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_cli.py +0 -0
  30. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_duplicates.py +0 -0
  31. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_git.py +0 -0
  32. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_languages.py +0 -0
  33. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_metrics.py +0 -0
  34. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_packaging.py +0 -0
  35. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_parallel.py +0 -0
  36. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_scanner.py +0 -0
  37. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_scoring.py +0 -0
  38. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_security.py +0 -0
  39. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_structure.py +0 -0
  40. {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_todos.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: repodoctor-cli
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Zero-dependency repository health analyser
5
5
  Author: Tanish Jain, Harsh Kumawat
6
6
  License: MIT
@@ -23,6 +23,21 @@ Modern development tools rely on heavy dependency chains that are hard to audit,
23
23
  ## Solution
24
24
  RepoDoctor is a production-quality CLI tool that analyzes a software repository and provides an actionable health, security, and maintainability report without a single third-party runtime dependency.
25
25
 
26
+
27
+ ## 🚀 Installation
28
+
29
+ You can install RepoDoctor globally on any OS directly from PyPI:
30
+
31
+ ```bash
32
+ pip install repodoctor-cli
33
+ ```
34
+
35
+ Once installed, simply navigate to any repository and run:
36
+ ```bash
37
+ repodoctor .
38
+ ```
39
+
40
+
26
41
  ## Features
27
42
  - **Multi-Threaded Parallel Scanning**: Asynchronously processes massive codebases in milliseconds.\n- **Animated Terminal UI**: Beautiful typewriter animations and progress spinners.\n- **Multi-Repository Aggregation**: Scan multiple codebases simultaneously and generate unified or independent reports across all flags (HTML, JSON, LLM prompt).\n- **Zero Runtime Dependencies**: Built entirely with Python's standard library.
28
43
  - **Single-File Portability**: Can be compiled into a single `repodoctor_single.py` script for extreme portability.
@@ -8,6 +8,21 @@ Modern development tools rely on heavy dependency chains that are hard to audit,
8
8
  ## Solution
9
9
  RepoDoctor is a production-quality CLI tool that analyzes a software repository and provides an actionable health, security, and maintainability report without a single third-party runtime dependency.
10
10
 
11
+
12
+ ## 🚀 Installation
13
+
14
+ You can install RepoDoctor globally on any OS directly from PyPI:
15
+
16
+ ```bash
17
+ pip install repodoctor-cli
18
+ ```
19
+
20
+ Once installed, simply navigate to any repository and run:
21
+ ```bash
22
+ repodoctor .
23
+ ```
24
+
25
+
11
26
  ## Features
12
27
  - **Multi-Threaded Parallel Scanning**: Asynchronously processes massive codebases in milliseconds.\n- **Animated Terminal UI**: Beautiful typewriter animations and progress spinners.\n- **Multi-Repository Aggregation**: Scan multiple codebases simultaneously and generate unified or independent reports across all flags (HTML, JSON, LLM prompt).\n- **Zero Runtime Dependencies**: Built entirely with Python's standard library.
13
28
  - **Single-File Portability**: Can be compiled into a single `repodoctor_single.py` script for extreme portability.
@@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
5
5
 
6
6
  [project]
7
7
  name = "repodoctor-cli"
8
- version = "1.0.0"
8
+ version = "1.0.1"
9
9
  description = "Zero-dependency repository health analyser"
10
10
  readme = "README.md"
11
11
  requires-python = ">=3.8"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: repodoctor-cli
3
- Version: 1.0.0
3
+ Version: 1.0.1
4
4
  Summary: Zero-dependency repository health analyser
5
5
  Author: Tanish Jain, Harsh Kumawat
6
6
  License: MIT
@@ -23,6 +23,21 @@ Modern development tools rely on heavy dependency chains that are hard to audit,
23
23
  ## Solution
24
24
  RepoDoctor is a production-quality CLI tool that analyzes a software repository and provides an actionable health, security, and maintainability report without a single third-party runtime dependency.
25
25
 
26
+
27
+ ## 🚀 Installation
28
+
29
+ You can install RepoDoctor globally on any OS directly from PyPI:
30
+
31
+ ```bash
32
+ pip install repodoctor-cli
33
+ ```
34
+
35
+ Once installed, simply navigate to any repository and run:
36
+ ```bash
37
+ repodoctor .
38
+ ```
39
+
40
+
26
41
  ## Features
27
42
  - **Multi-Threaded Parallel Scanning**: Asynchronously processes massive codebases in milliseconds.\n- **Animated Terminal UI**: Beautiful typewriter animations and progress spinners.\n- **Multi-Repository Aggregation**: Scan multiple codebases simultaneously and generate unified or independent reports across all flags (HTML, JSON, LLM prompt).\n- **Zero Runtime Dependencies**: Built entirely with Python's standard library.
28
43
  - **Single-File Portability**: Can be compiled into a single `repodoctor_single.py` script for extreme portability.
@@ -6,7 +6,7 @@ with open("README.md", encoding="utf-8") as f:
6
6
 
7
7
  setup(
8
8
  name="repodoctor-cli",
9
- version="1.0.0",
9
+ version="1.0.1",
10
10
  description="Zero-dependency repository health analyser",
11
11
  long_description=long_description,
12
12
  long_description_content_type="text/markdown",
File without changes