fosslight-source 2.1.0__tar.gz → 2.1.2__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.
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/PKG-INFO +1 -1
- fosslight_source-2.1.2/requirements.txt +11 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/setup.py +1 -1
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/cli.py +1 -1
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/run_scancode.py +1 -1
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source.egg-info/PKG-INFO +1 -1
- fosslight_source-2.1.2/src/fosslight_source.egg-info/requires.txt +15 -0
- fosslight_source-2.1.0/requirements.txt +0 -10
- fosslight_source-2.1.0/src/fosslight_source.egg-info/requires.txt +0 -12
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/LICENSE +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/MANIFEST.in +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/README.md +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/setup.cfg +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/__init__.py +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/_help.py +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/_license_matched.py +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/_parsing_scancode_file_item.py +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/_parsing_scanoss_file.py +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/_scan_item.py +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/run_scanoss.py +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/run_spdx_extractor.py +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source.egg-info/SOURCES.txt +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source.egg-info/dependency_links.txt +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source.egg-info/entry_points.txt +0 -0
- {fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source.egg-info/top_level.txt +0 -0
|
@@ -14,7 +14,7 @@ with open('requirements.txt', 'r', 'utf-8') as f:
|
|
|
14
14
|
if __name__ == "__main__":
|
|
15
15
|
setup(
|
|
16
16
|
name='fosslight_source',
|
|
17
|
-
version='2.1.
|
|
17
|
+
version='2.1.2',
|
|
18
18
|
package_dir={"": "src"},
|
|
19
19
|
packages=find_packages(where='src'),
|
|
20
20
|
description='FOSSLight Source Scanner',
|
|
@@ -119,7 +119,7 @@ def main() -> None:
|
|
|
119
119
|
except Exception as ex:
|
|
120
120
|
logger.debug(f"Failed to print log.: {ex}")
|
|
121
121
|
else:
|
|
122
|
-
logger.error(f"Input path({path_to_scan}) is not a directory. Please enter a valid path.")
|
|
122
|
+
logger.error(f"(-p option) Input path({path_to_scan}) is not a directory. Please enter a valid path.")
|
|
123
123
|
sys.exit(1)
|
|
124
124
|
|
|
125
125
|
|
|
@@ -135,7 +135,7 @@ def run_scan(
|
|
|
135
135
|
logger.error(f"Analyze {path_to_scan}: {msg}")
|
|
136
136
|
else:
|
|
137
137
|
success = False
|
|
138
|
-
msg = "Check the path to scan
|
|
138
|
+
msg = f"(-p option) Check the path to scan: {path_to_scan}"
|
|
139
139
|
|
|
140
140
|
if not return_results:
|
|
141
141
|
result_list = []
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
pyparsing
|
|
2
|
+
scanoss
|
|
3
|
+
XlsxWriter
|
|
4
|
+
fosslight_util>=2.1.1
|
|
5
|
+
PyYAML
|
|
6
|
+
wheel>=0.38.1
|
|
7
|
+
intbitset
|
|
8
|
+
fosslight_binary>=5.0.0
|
|
9
|
+
psycopg2-binary==2.9.9
|
|
10
|
+
|
|
11
|
+
[:sys_platform != "darwin"]
|
|
12
|
+
scancode-toolkit==32.2.*
|
|
13
|
+
|
|
14
|
+
[:sys_platform == "darwin"]
|
|
15
|
+
scancode-toolkit==32.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
|
{fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/_parsing_scanoss_file.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
{fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source/run_spdx_extractor.py
RENAMED
|
File without changes
|
|
File without changes
|
{fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{fosslight_source-2.1.0 → fosslight_source-2.1.2}/src/fosslight_source.egg-info/top_level.txt
RENAMED
|
File without changes
|