socketsecurity 0.0.46__tar.gz → 0.0.48__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.
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/PKG-INFO +2 -1
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/setup.py +3 -2
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/__init__.py +1 -1
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/core/__init__.py +1 -1
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/core/classes.py +0 -4
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/socketcli.py +5 -1
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity.egg-info/PKG-INFO +2 -1
- socketsecurity-0.0.48/socketsecurity.egg-info/entry_points.txt +2 -0
- socketsecurity-0.0.46/socketsecurity.egg-info/entry_points.txt +0 -2
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/setup.cfg +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/core/exceptions.py +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/core/github.py +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/core/glitlab.py +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/core/issues.py +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/core/licenses.py +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity/core/messages.py +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity.egg-info/SOURCES.txt +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity.egg-info/dependency_links.txt +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity.egg-info/requires.txt +0 -0
- {socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity.egg-info/top_level.txt +0 -0
|
@@ -2,7 +2,8 @@ from setuptools import setup, find_packages
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='socketsecurity',
|
|
5
|
-
version='0.0.
|
|
5
|
+
version='0.0.48',
|
|
6
|
+
python_requires='>3.10.1',
|
|
6
7
|
packages=find_packages(),
|
|
7
8
|
install_requires=[
|
|
8
9
|
'requests',
|
|
@@ -12,6 +13,6 @@ setup(
|
|
|
12
13
|
],
|
|
13
14
|
entry_points='''
|
|
14
15
|
[console_scripts]
|
|
15
|
-
socketcli=socketsecurity.socketcli
|
|
16
|
+
socketcli=socketsecurity.socketcli:cli
|
|
16
17
|
''',
|
|
17
18
|
)
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
__author__ = 'socket.dev'
|
|
2
|
-
__version__ = '0.0.
|
|
2
|
+
__version__ = '0.0.48'
|
|
@@ -90,7 +90,7 @@ def output_console_comments(diff_report) -> None:
|
|
|
90
90
|
print("No New Security issues detected by Socket Security")
|
|
91
91
|
|
|
92
92
|
|
|
93
|
-
|
|
93
|
+
def cli():
|
|
94
94
|
arguments = parser.parse_args()
|
|
95
95
|
repo = arguments.repo
|
|
96
96
|
branch = arguments.branch
|
|
@@ -174,3 +174,7 @@ if __name__ == '__main__':
|
|
|
174
174
|
}
|
|
175
175
|
all_packages[package_id] = output
|
|
176
176
|
core.save_file(license_file, json.dumps(all_packages))
|
|
177
|
+
|
|
178
|
+
|
|
179
|
+
if __name__ == '__main__':
|
|
180
|
+
cli()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{socketsecurity-0.0.46 → socketsecurity-0.0.48}/socketsecurity.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|