RedSocket 3.0__tar.gz → 3.0.0__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.
- {redsocket-3.0 → redsocket-3.0.0}/PKG-INFO +2 -2
- {redsocket-3.0 → redsocket-3.0.0}/RedSocket.egg-info/PKG-INFO +2 -2
- redsocket-3.0.0/setup.py +28 -0
- redsocket-3.0/setup.py +0 -28
- {redsocket-3.0 → redsocket-3.0.0}/LICENSE +0 -0
- {redsocket-3.0 → redsocket-3.0.0}/README.md +0 -0
- {redsocket-3.0 → redsocket-3.0.0}/RedSocket.egg-info/SOURCES.txt +0 -0
- {redsocket-3.0 → redsocket-3.0.0}/RedSocket.egg-info/dependency_links.txt +0 -0
- {redsocket-3.0 → redsocket-3.0.0}/RedSocket.egg-info/entry_points.txt +0 -0
- {redsocket-3.0 → redsocket-3.0.0}/RedSocket.egg-info/requires.txt +0 -0
- {redsocket-3.0 → redsocket-3.0.0}/RedSocket.egg-info/top_level.txt +0 -0
- {redsocket-3.0 → redsocket-3.0.0}/setup.cfg +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: RedSocket
|
|
3
|
-
Version: 3.0
|
|
3
|
+
Version: 3.0.0
|
|
4
4
|
Summary: A tool that automates Nmap scans and saves results to a file.
|
|
5
5
|
Home-page: https://github.com/phantomsecuritydev-ctrl/RedSocket
|
|
6
6
|
Author: Phantom
|
|
7
|
-
Author-email:
|
|
7
|
+
Author-email: tuo-email@example.com
|
|
8
8
|
License: GPL-3.0
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: RedSocket
|
|
3
|
-
Version: 3.0
|
|
3
|
+
Version: 3.0.0
|
|
4
4
|
Summary: A tool that automates Nmap scans and saves results to a file.
|
|
5
5
|
Home-page: https://github.com/phantomsecuritydev-ctrl/RedSocket
|
|
6
6
|
Author: Phantom
|
|
7
|
-
Author-email:
|
|
7
|
+
Author-email: tuo-email@example.com
|
|
8
8
|
License: GPL-3.0
|
|
9
9
|
Classifier: Programming Language :: Python :: 3
|
|
10
10
|
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
redsocket-3.0.0/setup.py
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="RedSocket", # Il nome del pacchetto
|
|
5
|
+
version="3.0.0", # Versione con formato x.y.z
|
|
6
|
+
packages=find_packages(),
|
|
7
|
+
install_requires=[ # Le dipendenze del pacchetto
|
|
8
|
+
'nmap', # Dipendenza
|
|
9
|
+
],
|
|
10
|
+
entry_points={
|
|
11
|
+
'console_scripts': [
|
|
12
|
+
'redsocket=redsocket:redsocket', # Comando principale per il programma
|
|
13
|
+
],
|
|
14
|
+
},
|
|
15
|
+
author="Phantom", # Il tuo nome
|
|
16
|
+
author_email="tuo-email@example.com", # La tua email
|
|
17
|
+
description="A tool that automates Nmap scans and saves results to a file.",
|
|
18
|
+
long_description=open('README.md').read(), # Descrizione lunga
|
|
19
|
+
long_description_content_type='text/markdown', # Tipo di descrizione
|
|
20
|
+
url="https://github.com/phantomsecuritydev-ctrl/RedSocket", # URL del progetto su GitHub
|
|
21
|
+
license="GPL-3.0", # Licenza
|
|
22
|
+
classifiers=[
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
|
|
25
|
+
"Operating System :: OS Independent",
|
|
26
|
+
],
|
|
27
|
+
python_requires='>=3.8', # Versione minima di Python
|
|
28
|
+
)
|
redsocket-3.0/setup.py
DELETED
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
from setuptools import setup, find_packages
|
|
2
|
-
|
|
3
|
-
setup(
|
|
4
|
-
name="RedSocket", # The name of your package
|
|
5
|
-
version="3.0", # The current version of the package
|
|
6
|
-
packages=find_packages(), # Automatically find packages in the project
|
|
7
|
-
install_requires=[ # The libraries your program depends on
|
|
8
|
-
'nmap', # Add any other necessary libraries here
|
|
9
|
-
],
|
|
10
|
-
entry_points={
|
|
11
|
-
'console_scripts': [
|
|
12
|
-
'redsocket=redsocket:redsocket', # Main command for the program
|
|
13
|
-
],
|
|
14
|
-
},
|
|
15
|
-
author="Phantom", # Your name (you can use a pseudonym or your real name)
|
|
16
|
-
author_email="your-email@example.com", # Your email address
|
|
17
|
-
description="A tool that automates Nmap scans and saves results to a file.", # Brief description
|
|
18
|
-
long_description=open('README.md').read(), # Long description taken from the README.md
|
|
19
|
-
long_description_content_type='text/markdown', # Format of the long description (Markdown)
|
|
20
|
-
url="https://github.com/phantomsecuritydev-ctrl/RedSocket", # Link to your GitHub repository
|
|
21
|
-
license="GPL-3.0", # License of the project
|
|
22
|
-
classifiers=[
|
|
23
|
-
"Programming Language :: Python :: 3", # Specifies that the package is for Python 3
|
|
24
|
-
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", # GPLv3 License
|
|
25
|
-
"Operating System :: OS Independent", # Supports operating systems independently
|
|
26
|
-
],
|
|
27
|
-
python_requires='>=3.8', # Specifies the minimum required Python version
|
|
28
|
-
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|