github-dependents-info 3.2.0__tar.gz → 3.2.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.
- {github_dependents_info-3.2.0 → github_dependents_info-3.2.1}/PKG-INFO +9 -9
- {github_dependents_info-3.2.0 → github_dependents_info-3.2.1}/README.md +6 -6
- {github_dependents_info-3.2.0 → github_dependents_info-3.2.1}/pyproject.toml +4 -4
- {github_dependents_info-3.2.0 → github_dependents_info-3.2.1}/LICENSE +0 -0
- {github_dependents_info-3.2.0 → github_dependents_info-3.2.1}/github_dependents_info/__init__.py +0 -0
- {github_dependents_info-3.2.0 → github_dependents_info-3.2.1}/github_dependents_info/__main__.py +0 -0
- {github_dependents_info-3.2.0 → github_dependents_info-3.2.1}/github_dependents_info/gh_dependents_info.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-dependents-info
|
|
3
|
-
Version: 3.2.
|
|
3
|
+
Version: 3.2.1
|
|
4
4
|
Summary: Collect information about dependencies between a github repo and other repositories. Results available in JSON, markdown and badges.
|
|
5
5
|
License-Expression: MIT
|
|
6
6
|
License-File: LICENSE
|
|
@@ -14,8 +14,8 @@ Classifier: Operating System :: OS Independent
|
|
|
14
14
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
-
Requires-Dist: beautifulsoup4 (==4.
|
|
18
|
-
Requires-Dist: click (>=8.
|
|
17
|
+
Requires-Dist: beautifulsoup4 (==4.15.0)
|
|
18
|
+
Requires-Dist: click (>=8.4.1,<8.5)
|
|
19
19
|
Requires-Dist: httpx (>=0.28.1,<0.29.0)
|
|
20
20
|
Requires-Dist: idna (>=3.14)
|
|
21
21
|
Requires-Dist: pandas (>=2.3.3,<3.0)
|
|
@@ -37,7 +37,7 @@ Description-Content-Type: text/markdown
|
|
|
37
37
|
[](https://github.com/nvuillam/github-dependents-info/pulls?utf8=%E2%9C%93&q=is%3Apr%20author%3Aapp%2Fdependabot)
|
|
38
38
|
|
|
39
39
|
[](https://github.com/nvuillam/github-dependents-info/graphs/contributors/)<!-- gh-dependents-info-used-by-start -->
|
|
40
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->
|
|
41
41
|
[](https://github.com/sponsors/nvuillam)
|
|
42
42
|
[](https://github.com/nvuillam/github-dependents-info/actions/workflows/mega-linter.yml)
|
|
43
43
|
[](https://github.com/nvuillam/github-dependents-info/blob/master/LICENSE)
|
|
@@ -63,7 +63,7 @@ This package uses GitHub HTML to collect dependents information and can:
|
|
|
63
63
|
- Optionally add an AI-generated usage summary (via `litellm`) when an LLM API key is present
|
|
64
64
|
- Update existing markdown by inserting **Used by** badge within tags
|
|
65
65
|
- `<!-- gh-dependents-info-used-by-start -->
|
|
66
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->`
|
|
67
67
|
- Handle multiple repositories packages
|
|
68
68
|
- Filter results using minimum stars or by repository owner
|
|
69
69
|
- Keep huge ecosystems manageable with pagination controls (`--max-scraped-pages`, `--pagination/--no-pagination`, `--page-size`)
|
|
@@ -269,7 +269,7 @@ _________________
|
|
|
269
269
|
|-----------|--------|----------------------------------------------|
|
|
270
270
|
| --repo | String | Repository. Example: `oxsecurity/megalinter` |
|
|
271
271
|
| -b<br/> --badgemarkdownfile | String | _(optional)_ Path to markdown file where to insert/update **Used by** badge <br/> (must contain tags `<!-- gh-dependents-info-used-by-start -->
|
|
272
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->`) |
|
|
273
273
|
| -s<br/> --sort | String | _(optional)_ Sort order: name (default) or stars |
|
|
274
274
|
| -x<br/> --minstars | String | _(optional)_ If set, filters repositories to keep only those with more than X stars |
|
|
275
275
|
| -m<br/> --markdownfile | String | _(optional)_ Output markdown file file |
|
|
@@ -292,7 +292,7 @@ Badge tags example (the tool replaces everything between the markers):
|
|
|
292
292
|
|
|
293
293
|
```markdown
|
|
294
294
|
<!-- gh-dependents-info-used-by-start -->
|
|
295
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->
|
|
296
296
|
```
|
|
297
297
|
|
|
298
298
|
_________________
|
|
@@ -307,7 +307,7 @@ _________________
|
|
|
307
307
|
github-dependents-info --repo nvuillam/npm-groovy-lint --json
|
|
308
308
|
|
|
309
309
|
- Insert/Update **Used by** markdown badge within an existing markdown file containing tags `<!-- gh-dependents-info-used-by-start -->
|
|
310
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->`
|
|
311
311
|
|
|
312
312
|
github-dependents-info --repo nvuillam/npm-groovy-lint --badgemarkdownfile ./README.md
|
|
313
313
|
|
|
@@ -380,7 +380,7 @@ Create a file **.github/workflows/github-dependents-info.yml** in your repositor
|
|
|
380
380
|
If will generate a new Pull Request (or replace the pending one) every time the usage stats will have changed :)
|
|
381
381
|
|
|
382
382
|
Don't forget to add tags `<!-- gh-dependents-info-used-by-start -->
|
|
383
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->` in your **README.md**, at the end of another badge line if you want github-dependents-info to replace its content automatically.
|
|
384
384
|
|
|
385
385
|
```yaml
|
|
386
386
|
# GitHub Dependents Info workflow
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[](https://github.com/nvuillam/github-dependents-info/pulls?utf8=%E2%9C%93&q=is%3Apr%20author%3Aapp%2Fdependabot)
|
|
11
11
|
|
|
12
12
|
[](https://github.com/nvuillam/github-dependents-info/graphs/contributors/)<!-- gh-dependents-info-used-by-start -->
|
|
13
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->
|
|
14
14
|
[](https://github.com/sponsors/nvuillam)
|
|
15
15
|
[](https://github.com/nvuillam/github-dependents-info/actions/workflows/mega-linter.yml)
|
|
16
16
|
[](https://github.com/nvuillam/github-dependents-info/blob/master/LICENSE)
|
|
@@ -36,7 +36,7 @@ This package uses GitHub HTML to collect dependents information and can:
|
|
|
36
36
|
- Optionally add an AI-generated usage summary (via `litellm`) when an LLM API key is present
|
|
37
37
|
- Update existing markdown by inserting **Used by** badge within tags
|
|
38
38
|
- `<!-- gh-dependents-info-used-by-start -->
|
|
39
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->`
|
|
40
40
|
- Handle multiple repositories packages
|
|
41
41
|
- Filter results using minimum stars or by repository owner
|
|
42
42
|
- Keep huge ecosystems manageable with pagination controls (`--max-scraped-pages`, `--pagination/--no-pagination`, `--page-size`)
|
|
@@ -242,7 +242,7 @@ _________________
|
|
|
242
242
|
|-----------|--------|----------------------------------------------|
|
|
243
243
|
| --repo | String | Repository. Example: `oxsecurity/megalinter` |
|
|
244
244
|
| -b<br/> --badgemarkdownfile | String | _(optional)_ Path to markdown file where to insert/update **Used by** badge <br/> (must contain tags `<!-- gh-dependents-info-used-by-start -->
|
|
245
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->`) |
|
|
246
246
|
| -s<br/> --sort | String | _(optional)_ Sort order: name (default) or stars |
|
|
247
247
|
| -x<br/> --minstars | String | _(optional)_ If set, filters repositories to keep only those with more than X stars |
|
|
248
248
|
| -m<br/> --markdownfile | String | _(optional)_ Output markdown file file |
|
|
@@ -265,7 +265,7 @@ Badge tags example (the tool replaces everything between the markers):
|
|
|
265
265
|
|
|
266
266
|
```markdown
|
|
267
267
|
<!-- gh-dependents-info-used-by-start -->
|
|
268
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->
|
|
269
269
|
```
|
|
270
270
|
|
|
271
271
|
_________________
|
|
@@ -280,7 +280,7 @@ _________________
|
|
|
280
280
|
github-dependents-info --repo nvuillam/npm-groovy-lint --json
|
|
281
281
|
|
|
282
282
|
- Insert/Update **Used by** markdown badge within an existing markdown file containing tags `<!-- gh-dependents-info-used-by-start -->
|
|
283
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->`
|
|
284
284
|
|
|
285
285
|
github-dependents-info --repo nvuillam/npm-groovy-lint --badgemarkdownfile ./README.md
|
|
286
286
|
|
|
@@ -353,7 +353,7 @@ Create a file **.github/workflows/github-dependents-info.yml** in your repositor
|
|
|
353
353
|
If will generate a new Pull Request (or replace the pending one) every time the usage stats will have changed :)
|
|
354
354
|
|
|
355
355
|
Don't forget to add tags `<!-- gh-dependents-info-used-by-start -->
|
|
356
|
-
[](https://github.com/nvuillam/github-dependents-info/blob/main/docs/github-dependents-info.md)<!-- gh-dependents-info-used-by-end -->` in your **README.md**, at the end of another badge line if you want github-dependents-info to replace its content automatically.
|
|
357
357
|
|
|
358
358
|
```yaml
|
|
359
359
|
# GitHub Dependents Info workflow
|
|
@@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api"
|
|
|
5
5
|
|
|
6
6
|
[project]
|
|
7
7
|
name = "github-dependents-info"
|
|
8
|
-
version = "3.2.
|
|
8
|
+
version = "3.2.1"
|
|
9
9
|
description = "Collect information about dependencies between a github repo and other repositories. Results available in JSON, markdown and badges."
|
|
10
10
|
readme = "README.md"
|
|
11
11
|
license = "MIT"
|
|
@@ -39,10 +39,10 @@ Repository = "https://github.com/nvuillam/github-dependents-info"
|
|
|
39
39
|
[tool.poetry.dependencies]
|
|
40
40
|
python = ">=3.10,<4.0"
|
|
41
41
|
|
|
42
|
-
click = ">=8.
|
|
42
|
+
click = ">=8.4.1,<8.5"
|
|
43
43
|
typer = ">=0.25.1,<0.26"
|
|
44
44
|
rich = ">=15,<15.1"
|
|
45
|
-
beautifulsoup4 = "4.
|
|
45
|
+
beautifulsoup4 = "4.15.0"
|
|
46
46
|
pandas = ">=2.3.3,<3.0"
|
|
47
47
|
httpx = "^0.28.1"
|
|
48
48
|
idna = ">=3.14"
|
|
@@ -59,7 +59,7 @@ pydocstyle = "^6.3.0"
|
|
|
59
59
|
pylint = "^4.0.0"
|
|
60
60
|
pytest = "^9.0.0"
|
|
61
61
|
pyupgrade = "^3.4.0"
|
|
62
|
-
safety = "^3.
|
|
62
|
+
safety = "^3.8.1"
|
|
63
63
|
coverage = "^7.3.4"
|
|
64
64
|
coverage-badge = "^1.1.0"
|
|
65
65
|
cryptography = ">=48.0.0"
|
|
File without changes
|
{github_dependents_info-3.2.0 → github_dependents_info-3.2.1}/github_dependents_info/__init__.py
RENAMED
|
File without changes
|
{github_dependents_info-3.2.0 → github_dependents_info-3.2.1}/github_dependents_info/__main__.py
RENAMED
|
File without changes
|
|
File without changes
|