github-license-scanner 0.1.0__tar.gz → 0.1.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_license_scanner-0.1.0 → github_license_scanner-0.1.1}/PKG-INFO +11 -11
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/README.md +10 -10
- github_license_scanner-0.1.1/gls/__init__.py +1 -0
- github_license_scanner-0.1.0/gls/__init__.py +0 -1
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/.gitignore +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/LICENSE +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/auth.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/cli.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/config.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/dependency_scanner.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/deploy_advisor.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/docs/LEGAL_DISCLAIMER.md +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/docs/PRIVACY.md +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/docs/TERMS.md +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/github_api.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/history_store.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/i18n.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/license_analyzer.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/models.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/rate_limit.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/report.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/sbom_export.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/spdx_engine.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/gls/webui.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/pyproject.toml +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/requirements.txt +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/scripts/generate_audit_pdf.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/scripts/smoke_features.py +0 -0
- {github_license_scanner-0.1.0 → github_license_scanner-0.1.1}/scripts/verify_app.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-license-scanner
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: Analyze GitHub repo and dependency licenses, copyleft risk, and closed-source sellability.
|
|
5
5
|
Project-URL: Homepage, https://github.com/NezbiT/github-license-scanner
|
|
6
6
|
Project-URL: Issues, https://github.com/NezbiT/github-license-scanner/issues
|
|
@@ -27,7 +27,7 @@ Description-Content-Type: text/markdown
|
|
|
27
27
|
# GitHub License Scanner
|
|
28
28
|
|
|
29
29
|
<p align="center">
|
|
30
|
-
<img src="docs/images/hero.jpg" alt="GitHub License Scanner hero banner" width="100%" />
|
|
30
|
+
<img src="https://raw.githubusercontent.com/NezbiT/github-license-scanner/main/docs/images/hero.jpg" alt="GitHub License Scanner hero banner" width="100%" />
|
|
31
31
|
</p>
|
|
32
32
|
|
|
33
33
|
<p align="center">
|
|
@@ -41,7 +41,7 @@ Description-Content-Type: text/markdown
|
|
|
41
41
|
<a href="#web-ui"><img src="https://img.shields.io/badge/UI-NiceGUI-8b5e3c?style=flat-square" alt="NiceGUI" /></a>
|
|
42
42
|
<a href="#cli"><img src="https://img.shields.io/badge/CLI-supported-3f6f4e?style=flat-square" alt="CLI" /></a>
|
|
43
43
|
<a href="#disclaimer"><img src="https://img.shields.io/badge/Not-legal%20advice-9b2c2c?style=flat-square" alt="Disclaimer" /></a>
|
|
44
|
-
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-2c3e50?style=flat-square" alt="MIT License" /></a>
|
|
44
|
+
<a href="https://github.com/NezbiT/github-license-scanner/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-2c3e50?style=flat-square" alt="MIT License" /></a>
|
|
45
45
|
</p>
|
|
46
46
|
|
|
47
47
|
---
|
|
@@ -51,19 +51,19 @@ Description-Content-Type: text/markdown
|
|
|
51
51
|
### Light workspace (full-width layout)
|
|
52
52
|
|
|
53
53
|
<p align="center">
|
|
54
|
-
<img src="docs/images/ui-light.jpg" alt="Light mode UI — scan workspace and results" width="100%" />
|
|
54
|
+
<img src="https://raw.githubusercontent.com/NezbiT/github-license-scanner/main/docs/images/ui-light.jpg" alt="Light mode UI — scan workspace and results" width="100%" />
|
|
55
55
|
</p>
|
|
56
56
|
|
|
57
57
|
### Dark mode
|
|
58
58
|
|
|
59
59
|
<p align="center">
|
|
60
|
-
<img src="docs/images/ui-dark.jpg" alt="Dark mode UI — copyleft warning and package groups" width="100%" />
|
|
60
|
+
<img src="https://raw.githubusercontent.com/NezbiT/github-license-scanner/main/docs/images/ui-dark.jpg" alt="Dark mode UI — copyleft warning and package groups" width="100%" />
|
|
61
61
|
</p>
|
|
62
62
|
|
|
63
63
|
### How it works
|
|
64
64
|
|
|
65
65
|
<p align="center">
|
|
66
|
-
<img src="docs/images/flow.jpg" alt="Flow: URL → fetch → registries → verdict → deploy" width="100%" />
|
|
66
|
+
<img src="https://raw.githubusercontent.com/NezbiT/github-license-scanner/main/docs/images/flow.jpg" alt="Flow: URL → fetch → registries → verdict → deploy" width="100%" />
|
|
67
67
|
</p>
|
|
68
68
|
|
|
69
69
|
| Step | What happens |
|
|
@@ -128,7 +128,7 @@ directory if present, and real environment variables always win.
|
|
|
128
128
|
| `GLS_USERS_FILE` | JSON users DB (default: `users.json` in the data dir) |
|
|
129
129
|
| `GLS_DATA_DIR` | Override where history and users are stored |
|
|
130
130
|
|
|
131
|
-
See [`.env.example`](.env.example) for the full list.
|
|
131
|
+
See [`.env.example`](https://github.com/NezbiT/github-license-scanner/blob/main/.env.example) for the full list.
|
|
132
132
|
|
|
133
133
|
History and users live in your per-user data directory, never inside the
|
|
134
134
|
installed package:
|
|
@@ -250,7 +250,7 @@ github-license-scanner/
|
|
|
250
250
|
- Set a strong **`GLS_STORAGE_SECRET`** before exposing the UI.
|
|
251
251
|
- Scan history is **instance-local** and shared if multi-user — use **Clear history** or prune via config.
|
|
252
252
|
- Rate limits and batch caps reduce GitHub API abuse.
|
|
253
|
-
- Docs: [Privacy](gls/docs/PRIVACY.md) · [Terms](gls/docs/TERMS.md) · [Legal disclaimer](gls/docs/LEGAL_DISCLAIMER.md)
|
|
253
|
+
- Docs: [Privacy](https://github.com/NezbiT/github-license-scanner/blob/main/gls/docs/PRIVACY.md) · [Terms](https://github.com/NezbiT/github-license-scanner/blob/main/gls/docs/TERMS.md) · [Legal disclaimer](https://github.com/NezbiT/github-license-scanner/blob/main/gls/docs/LEGAL_DISCLAIMER.md)
|
|
254
254
|
|
|
255
255
|
---
|
|
256
256
|
|
|
@@ -260,7 +260,7 @@ This tool provides **automated heuristics only**. It is **not legal advice** and
|
|
|
260
260
|
license-compatibility opinion. Dual-licensing, linking models, SaaS (AGPL/SSPL),
|
|
261
261
|
attribution duties, and contracts can change obligations.
|
|
262
262
|
Always review with a qualified attorney before commercial closed-source distribution.
|
|
263
|
-
See [gls/docs/LEGAL_DISCLAIMER.md](gls/docs/LEGAL_DISCLAIMER.md).
|
|
263
|
+
See [gls/docs/LEGAL_DISCLAIMER.md](https://github.com/NezbiT/github-license-scanner/blob/main/gls/docs/LEGAL_DISCLAIMER.md).
|
|
264
264
|
|
|
265
265
|
---
|
|
266
266
|
|
|
@@ -285,14 +285,14 @@ python -m build
|
|
|
285
285
|
twine check dist/*
|
|
286
286
|
```
|
|
287
287
|
|
|
288
|
-
Releases are published to PyPI by [`.github/workflows/publish.yml`](.github/workflows/publish.yml)
|
|
288
|
+
Releases are published to PyPI by [`.github/workflows/publish.yml`](https://github.com/NezbiT/github-license-scanner/blob/main/.github/workflows/publish.yml)
|
|
289
289
|
using Trusted Publishing (OIDC) — no API tokens are stored anywhere.
|
|
290
290
|
|
|
291
291
|
---
|
|
292
292
|
|
|
293
293
|
## License
|
|
294
294
|
|
|
295
|
-
Released under the **[MIT License](LICENSE)**.
|
|
295
|
+
Released under the **[MIT License](https://github.com/NezbiT/github-license-scanner/blob/main/LICENSE)**.
|
|
296
296
|
|
|
297
297
|
You may use, modify, and redistribute this project commercially or privately,
|
|
298
298
|
as long as you keep the copyright and license notice. See `LICENSE` for full text.
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# GitHub License Scanner
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
|
-
<img src="docs/images/hero.jpg" alt="GitHub License Scanner hero banner" width="100%" />
|
|
4
|
+
<img src="https://raw.githubusercontent.com/NezbiT/github-license-scanner/main/docs/images/hero.jpg" alt="GitHub License Scanner hero banner" width="100%" />
|
|
5
5
|
</p>
|
|
6
6
|
|
|
7
7
|
<p align="center">
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
<a href="#web-ui"><img src="https://img.shields.io/badge/UI-NiceGUI-8b5e3c?style=flat-square" alt="NiceGUI" /></a>
|
|
16
16
|
<a href="#cli"><img src="https://img.shields.io/badge/CLI-supported-3f6f4e?style=flat-square" alt="CLI" /></a>
|
|
17
17
|
<a href="#disclaimer"><img src="https://img.shields.io/badge/Not-legal%20advice-9b2c2c?style=flat-square" alt="Disclaimer" /></a>
|
|
18
|
-
<a href="LICENSE"><img src="https://img.shields.io/badge/License-MIT-2c3e50?style=flat-square" alt="MIT License" /></a>
|
|
18
|
+
<a href="https://github.com/NezbiT/github-license-scanner/blob/main/LICENSE"><img src="https://img.shields.io/badge/License-MIT-2c3e50?style=flat-square" alt="MIT License" /></a>
|
|
19
19
|
</p>
|
|
20
20
|
|
|
21
21
|
---
|
|
@@ -25,19 +25,19 @@
|
|
|
25
25
|
### Light workspace (full-width layout)
|
|
26
26
|
|
|
27
27
|
<p align="center">
|
|
28
|
-
<img src="docs/images/ui-light.jpg" alt="Light mode UI — scan workspace and results" width="100%" />
|
|
28
|
+
<img src="https://raw.githubusercontent.com/NezbiT/github-license-scanner/main/docs/images/ui-light.jpg" alt="Light mode UI — scan workspace and results" width="100%" />
|
|
29
29
|
</p>
|
|
30
30
|
|
|
31
31
|
### Dark mode
|
|
32
32
|
|
|
33
33
|
<p align="center">
|
|
34
|
-
<img src="docs/images/ui-dark.jpg" alt="Dark mode UI — copyleft warning and package groups" width="100%" />
|
|
34
|
+
<img src="https://raw.githubusercontent.com/NezbiT/github-license-scanner/main/docs/images/ui-dark.jpg" alt="Dark mode UI — copyleft warning and package groups" width="100%" />
|
|
35
35
|
</p>
|
|
36
36
|
|
|
37
37
|
### How it works
|
|
38
38
|
|
|
39
39
|
<p align="center">
|
|
40
|
-
<img src="docs/images/flow.jpg" alt="Flow: URL → fetch → registries → verdict → deploy" width="100%" />
|
|
40
|
+
<img src="https://raw.githubusercontent.com/NezbiT/github-license-scanner/main/docs/images/flow.jpg" alt="Flow: URL → fetch → registries → verdict → deploy" width="100%" />
|
|
41
41
|
</p>
|
|
42
42
|
|
|
43
43
|
| Step | What happens |
|
|
@@ -102,7 +102,7 @@ directory if present, and real environment variables always win.
|
|
|
102
102
|
| `GLS_USERS_FILE` | JSON users DB (default: `users.json` in the data dir) |
|
|
103
103
|
| `GLS_DATA_DIR` | Override where history and users are stored |
|
|
104
104
|
|
|
105
|
-
See [`.env.example`](.env.example) for the full list.
|
|
105
|
+
See [`.env.example`](https://github.com/NezbiT/github-license-scanner/blob/main/.env.example) for the full list.
|
|
106
106
|
|
|
107
107
|
History and users live in your per-user data directory, never inside the
|
|
108
108
|
installed package:
|
|
@@ -224,7 +224,7 @@ github-license-scanner/
|
|
|
224
224
|
- Set a strong **`GLS_STORAGE_SECRET`** before exposing the UI.
|
|
225
225
|
- Scan history is **instance-local** and shared if multi-user — use **Clear history** or prune via config.
|
|
226
226
|
- Rate limits and batch caps reduce GitHub API abuse.
|
|
227
|
-
- Docs: [Privacy](gls/docs/PRIVACY.md) · [Terms](gls/docs/TERMS.md) · [Legal disclaimer](gls/docs/LEGAL_DISCLAIMER.md)
|
|
227
|
+
- Docs: [Privacy](https://github.com/NezbiT/github-license-scanner/blob/main/gls/docs/PRIVACY.md) · [Terms](https://github.com/NezbiT/github-license-scanner/blob/main/gls/docs/TERMS.md) · [Legal disclaimer](https://github.com/NezbiT/github-license-scanner/blob/main/gls/docs/LEGAL_DISCLAIMER.md)
|
|
228
228
|
|
|
229
229
|
---
|
|
230
230
|
|
|
@@ -234,7 +234,7 @@ This tool provides **automated heuristics only**. It is **not legal advice** and
|
|
|
234
234
|
license-compatibility opinion. Dual-licensing, linking models, SaaS (AGPL/SSPL),
|
|
235
235
|
attribution duties, and contracts can change obligations.
|
|
236
236
|
Always review with a qualified attorney before commercial closed-source distribution.
|
|
237
|
-
See [gls/docs/LEGAL_DISCLAIMER.md](gls/docs/LEGAL_DISCLAIMER.md).
|
|
237
|
+
See [gls/docs/LEGAL_DISCLAIMER.md](https://github.com/NezbiT/github-license-scanner/blob/main/gls/docs/LEGAL_DISCLAIMER.md).
|
|
238
238
|
|
|
239
239
|
---
|
|
240
240
|
|
|
@@ -259,14 +259,14 @@ python -m build
|
|
|
259
259
|
twine check dist/*
|
|
260
260
|
```
|
|
261
261
|
|
|
262
|
-
Releases are published to PyPI by [`.github/workflows/publish.yml`](.github/workflows/publish.yml)
|
|
262
|
+
Releases are published to PyPI by [`.github/workflows/publish.yml`](https://github.com/NezbiT/github-license-scanner/blob/main/.github/workflows/publish.yml)
|
|
263
263
|
using Trusted Publishing (OIDC) — no API tokens are stored anywhere.
|
|
264
264
|
|
|
265
265
|
---
|
|
266
266
|
|
|
267
267
|
## License
|
|
268
268
|
|
|
269
|
-
Released under the **[MIT License](LICENSE)**.
|
|
269
|
+
Released under the **[MIT License](https://github.com/NezbiT/github-license-scanner/blob/main/LICENSE)**.
|
|
270
270
|
|
|
271
271
|
You may use, modify, and redistribute this project commercially or privately,
|
|
272
272
|
as long as you keep the copyright and license notice. See `LICENSE` for full text.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.1.1"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.1.0"
|
|
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
|