fosslight-dependency 3.0.7__py3-none-any.whl → 4.1.30__py3-none-any.whl
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.
- fosslight_dependency/LICENSES/LICENSE +201 -0
- fosslight_dependency/LICENSES/LicenseRef-3rd_party_licenses.txt +1254 -0
- fosslight_dependency/__init__.py +0 -1
- fosslight_dependency/_analyze_dependency.py +130 -0
- fosslight_dependency/_graph_convertor.py +67 -0
- fosslight_dependency/_help.py +79 -0
- fosslight_dependency/_package_manager.py +397 -0
- fosslight_dependency/cli.py +127 -0
- fosslight_dependency/constant.py +57 -0
- fosslight_dependency/dependency_item.py +103 -0
- fosslight_dependency/package_manager/Android.py +90 -0
- fosslight_dependency/package_manager/Cargo.py +144 -0
- fosslight_dependency/package_manager/Carthage.py +130 -0
- fosslight_dependency/package_manager/Cocoapods.py +194 -0
- fosslight_dependency/package_manager/Go.py +179 -0
- fosslight_dependency/package_manager/Gradle.py +123 -0
- fosslight_dependency/package_manager/Helm.py +106 -0
- fosslight_dependency/package_manager/Maven.py +274 -0
- fosslight_dependency/package_manager/Npm.py +296 -0
- fosslight_dependency/package_manager/Nuget.py +368 -0
- fosslight_dependency/package_manager/Pnpm.py +155 -0
- fosslight_dependency/package_manager/Pub.py +241 -0
- fosslight_dependency/package_manager/Pypi.py +395 -0
- fosslight_dependency/package_manager/Swift.py +159 -0
- fosslight_dependency/package_manager/Unity.py +118 -0
- fosslight_dependency/package_manager/Yarn.py +231 -0
- fosslight_dependency/package_manager/__init__.py +0 -0
- fosslight_dependency/run_dependency_scanner.py +393 -0
- fosslight_dependency-4.1.30.dist-info/METADATA +213 -0
- fosslight_dependency-4.1.30.dist-info/RECORD +37 -0
- {fosslight_dependency-3.0.7.dist-info → fosslight_dependency-4.1.30.dist-info}/WHEEL +1 -1
- fosslight_dependency-4.1.30.dist-info/entry_points.txt +2 -0
- fosslight_dependency-4.1.30.dist-info/licenses/LICENSES/Apache-2.0.txt +201 -0
- fosslight_dependency-4.1.30.dist-info/licenses/LICENSES/LicenseRef-3rd_party_licenses.txt +1254 -0
- fosslight_dependency-4.1.30.dist-info/licenses/LICENSES/MIT.txt +21 -0
- fosslight_dependency/_version.py +0 -1
- fosslight_dependency/analyze_dependency.py +0 -1090
- fosslight_dependency/third_party/askalono/askalono.exe +0 -0
- fosslight_dependency/third_party/askalono/askalono_macos +0 -0
- fosslight_dependency/third_party/nomos/nomossa +0 -0
- fosslight_dependency-3.0.7.dist-info/3rd_party_licenses.txt +0 -726
- fosslight_dependency-3.0.7.dist-info/METADATA +0 -51
- fosslight_dependency-3.0.7.dist-info/RECORD +0 -13
- fosslight_dependency-3.0.7.dist-info/entry_points.txt +0 -3
- {fosslight_dependency-3.0.7.dist-info → fosslight_dependency-4.1.30.dist-info/licenses}/LICENSE +0 -0
- {fosslight_dependency-3.0.7.dist-info → fosslight_dependency-4.1.30.dist-info}/top_level.txt +0 -0
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
Metadata-Version: 2.1
|
|
2
|
-
Name: fosslight-dependency
|
|
3
|
-
Version: 3.0.7
|
|
4
|
-
Summary: FOSSLight Dependency
|
|
5
|
-
Home-page: https://github.com/fosslight/fosslight_dependency
|
|
6
|
-
Author: LG Electronics
|
|
7
|
-
License: Apache-2.0
|
|
8
|
-
Download-URL: https://github.com/fosslight/fosslight_dependency
|
|
9
|
-
Platform: UNKNOWN
|
|
10
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
11
|
-
Classifier: License :: OSI Approved :: Apache Software License
|
|
12
|
-
Description-Content-Type: text/markdown
|
|
13
|
-
Requires-Dist: openpyxl
|
|
14
|
-
Requires-Dist: beautifulsoup4
|
|
15
|
-
Requires-Dist: lxml
|
|
16
|
-
Requires-Dist: virtualenv
|
|
17
|
-
Requires-Dist: pyyaml
|
|
18
|
-
Requires-Dist: lastversion
|
|
19
|
-
Requires-Dist: fosslight-util
|
|
20
|
-
|
|
21
|
-
# FOSSLight Dependency
|
|
22
|
-
|
|
23
|
-
<img src="https://img.shields.io/pypi/l/fosslight_dependency" alt="License" /> <img src="https://img.shields.io/pypi/v/fosslight_dependency" alt="Current python package version." /> <img src="https://img.shields.io/pypi/pyversions/fosslight_dependency" />
|
|
24
|
-
</p>
|
|
25
|
-
|
|
26
|
-
## 💡 Introduction
|
|
27
|
-
This is the tool that supports the analysis of dependencies for multiple package managers. It detects the manifest file of package managers automatically and analyzes the dependencies with using open source tools. Then, it generates the report file that contains OSS information of dependencies.
|
|
28
|
-
|
|
29
|
-
Currently, it supports the following package managers.
|
|
30
|
-
* [Gradle](https://gradle.org/) (Java)
|
|
31
|
-
* [Maven](http://maven.apache.org/) (Java)
|
|
32
|
-
* [NPM](https://www.npmjs.com/) (Node.js)
|
|
33
|
-
* [PIP](https://pip.pypa.io/) (Python)
|
|
34
|
-
* [Pub](https://pub.dev/) (Dart with flutter)
|
|
35
|
-
* [Cocoapods](https://cocoapods.org/) (Swift/Obj-C)
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
## 📖 User Guide
|
|
39
|
-
Please see the [**User Guide**](https://github.com/fosslight/fosslight_dependency/blob/main/docs/user-guide.md) for more information on how to install and run it.
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
## 👏 Contributing Guide
|
|
43
|
-
We always welcome your contributions.
|
|
44
|
-
Please see the [CONTRIBUTING guide](https://github.com/fosslight/fosslight_dependency/blob/main/CONTRIBUTING.md) for how to contribute.
|
|
45
|
-
|
|
46
|
-
## 📄 License
|
|
47
|
-
|
|
48
|
-
Copyright (c) 2020 LG Electronics, Inc.
|
|
49
|
-
FOSSLight Dependency is licensed under Apache-2.0, as found in the [LICENSE](https://github.com/fosslight/fosslight_dependency/blob/main/LICENSE) file.
|
|
50
|
-
|
|
51
|
-
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
fosslight_dependency/__init__.py,sha256=WjDmvecyDIyJLYp4rCV9vsSYbQDc4L1EpYqORvEXliI,33
|
|
2
|
-
fosslight_dependency/_version.py,sha256=-2IIl9MbjFnkT8NVubKU2SmY_9-BeX6yMbeEn-rPGYk,21
|
|
3
|
-
fosslight_dependency/analyze_dependency.py,sha256=-KoxR52sfTwTeYBCa3t0LxK89uL9VRo3pklxI3VVt8I,36592
|
|
4
|
-
fosslight_dependency/third_party/askalono/askalono.exe,sha256=NyngElHbrg3zLFRVwn6fPDZE_EDAEb1N8tiwWoCm4pQ,4743680
|
|
5
|
-
fosslight_dependency/third_party/askalono/askalono_macos,sha256=cYSNXhAQpkdd8lkgnY5skNeDmU_8DIuP84eFi0OXKkE,5589868
|
|
6
|
-
fosslight_dependency/third_party/nomos/nomossa,sha256=xF1t2O4Jvf39hMDCK7YBst-pKeGNSa3G4KapM_XyBjk,1617040
|
|
7
|
-
fosslight_dependency-3.0.7.dist-info/3rd_party_licenses.txt,sha256=NVw2yYlBBiMX0XZhvwf4j1kxpqsa9-dAeOlDXSX7FYY,85412
|
|
8
|
-
fosslight_dependency-3.0.7.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
|
|
9
|
-
fosslight_dependency-3.0.7.dist-info/METADATA,sha256=J4RHwvKkWIbE4oqsLJiMfkxPO-uXmHMtlxuvFWsiJQU,2136
|
|
10
|
-
fosslight_dependency-3.0.7.dist-info/WHEEL,sha256=OqRkF0eY5GHssMorFjlbTIq072vpHpF60fIQA6lS9xA,92
|
|
11
|
-
fosslight_dependency-3.0.7.dist-info/entry_points.txt,sha256=dZywOL64ZIiskrUkDu7GE0MG293Z3V0-w9OUTFog1CY,87
|
|
12
|
-
fosslight_dependency-3.0.7.dist-info/top_level.txt,sha256=Jc0V7VcVCH0TEM8ksb8dwroTYz4AmRaQnlr3FB71Hcs,21
|
|
13
|
-
fosslight_dependency-3.0.7.dist-info/RECORD,,
|
{fosslight_dependency-3.0.7.dist-info → fosslight_dependency-4.1.30.dist-info/licenses}/LICENSE
RENAMED
|
File without changes
|
{fosslight_dependency-3.0.7.dist-info → fosslight_dependency-4.1.30.dist-info}/top_level.txt
RENAMED
|
File without changes
|