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.
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/PKG-INFO +16 -1
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/README.md +15 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/pyproject.toml +1 -1
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/PKG-INFO +16 -1
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/setup.py +1 -1
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/__init__.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/__main__.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/baseline.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/cli.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/duplicates.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/git.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/languages.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/linter.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/metrics.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/models.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/report.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/scanner.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/scoring.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/security.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/spinner.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/structure.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor/todos.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/SOURCES.txt +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/dependency_links.txt +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/entry_points.txt +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/repodoctor_cli.egg-info/top_level.txt +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/setup.cfg +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_baseline.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_cli.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_duplicates.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_git.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_languages.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_metrics.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_packaging.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_parallel.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_scanner.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_scoring.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_security.py +0 -0
- {repodoctor_cli-1.0.0 → repodoctor_cli-1.0.1}/tests/test_structure.py +0 -0
- {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.
|
|
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.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: repodoctor-cli
|
|
3
|
-
Version: 1.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.
|
|
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
|
|
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
|
|
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
|