nmaping 1.2__tar.gz → 1.4__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.
@@ -1,17 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nmaping
3
- Version: 1.2
3
+ Version: 1.4
4
4
  Summary: An automation and network scanning utility tool.
5
5
  Author-email: Abu Tanim <mrtanvai@gmail.com>
6
6
  License: Custom License
7
7
  Project-URL: Homepage, https://github.com/mrtan-official/Nmap-scaning
8
- Project-URL: Bug-Tracker, https://github.com/mrtan-official/Nmap-scaning/issues
9
8
  Classifier: Programming Language :: Python :: 3
10
- Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.7
9
+ Classifier: Operating System :: POSIX :: Linux
10
+ Requires-Python: >=3.13
12
11
  Description-Content-Type: text/markdown
13
- License-File: LICENSE
14
- Dynamic: license-file
15
12
 
16
13
  # Nmap-scaning
17
14
  This code write by Mr Tan.
@@ -0,0 +1 @@
1
+ from .nmap import *
@@ -1,17 +1,14 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nmaping
3
- Version: 1.2
3
+ Version: 1.4
4
4
  Summary: An automation and network scanning utility tool.
5
5
  Author-email: Abu Tanim <mrtanvai@gmail.com>
6
6
  License: Custom License
7
7
  Project-URL: Homepage, https://github.com/mrtan-official/Nmap-scaning
8
- Project-URL: Bug-Tracker, https://github.com/mrtan-official/Nmap-scaning/issues
9
8
  Classifier: Programming Language :: Python :: 3
10
- Classifier: Operating System :: OS Independent
11
- Requires-Python: >=3.7
9
+ Classifier: Operating System :: POSIX :: Linux
10
+ Requires-Python: >=3.13
12
11
  Description-Content-Type: text/markdown
13
- License-File: LICENSE
14
- Dynamic: license-file
15
12
 
16
13
  # Nmap-scaning
17
14
  This code write by Mr Tan.
@@ -1,6 +1,7 @@
1
- LICENSE
2
1
  README.md
3
2
  pyproject.toml
3
+ nmaping/__init__.py
4
+ nmaping/nmap.cpython-313-x86_64-linux-gnu.so
4
5
  nmaping.egg-info/PKG-INFO
5
6
  nmaping.egg-info/SOURCES.txt
6
7
  nmaping.egg-info/dependency_links.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ nmaping = nmaping.nmap:menu
@@ -0,0 +1 @@
1
+ nmaping
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "nmaping"
7
+ version = "1.4"
8
+ authors = [
9
+ { name="Abu Tanim", email="mrtanvai@gmail.com" },
10
+ ]
11
+ description = "An automation and network scanning utility tool."
12
+ readme = "README.md"
13
+ requires-python = ">=3.13"
14
+ license = { text = "Custom License" }
15
+
16
+ classifiers = [
17
+ "Programming Language :: Python :: 3",
18
+ "Operating System :: POSIX :: Linux",
19
+ ]
20
+
21
+ [project.urls]
22
+ Homepage = "https://github.com/mrtan-official/Nmap-scaning"
23
+
24
+ [tool.setuptools.packages.find]
25
+ where = ["."]
26
+ include = ["nmaping*"]
27
+
28
+ [tool.setuptools.package-data]
29
+ nmaping = ["*.so"]
30
+
31
+ [project.scripts]
32
+ nmaping = "nmaping.nmap:menu"
nmaping-1.2/LICENSE DELETED
@@ -1,6 +0,0 @@
1
- Copyright (c) 2026 Abu Tanim (Mr. Tan). All rights reserved.
2
-
3
- This software and its source code are the sole property of the author.
4
- No one is allowed to copy, modify, distribute, or upload this tool to
5
- any public repository (including GitHub) or third-party platform
6
- without explicit written permission from the owner.
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- nmaping = nmap:menu
@@ -1 +0,0 @@
1
-
@@ -1,33 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=61.0.0", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "nmaping"
7
- version = "1.2" # <-- আমরা নতুন মেটাডেটা পুশ করছি, তাই ভার্সনটি বাড়িয়ে ১.২ করে দিলাম
8
- authors = [
9
- { name="Abu Tanim", email="mrtanvai@gmail.com" },
10
- ]
11
- description = "An automation and network scanning utility tool."
12
- readme = "README.md"
13
- requires-python = ">=3.7"
14
- license = { text = "Custom License" }
15
-
16
- classifiers = [
17
- "Programming Language :: Python :: 3",
18
- "Operating System :: OS Independent",
19
- ]
20
-
21
- # PyPI পেজে 'Verified details' আনার জন্য আপনার গিটহাবের লিংকসমূহ
22
- [project.urls]
23
- Homepage = "https://github.com/mrtan-official/Nmap-scaning"
24
- Bug-Tracker = "https://github.com/mrtan-official/Nmap-scaning/issues"
25
-
26
- # আপনার nmap.py মডিউলটি প্যাকেজে অন্তর্ভুক্ত করার নিয়ম
27
- [tool.setuptools.packages.find]
28
- where = ["."]
29
- include = ["nmap.py"]
30
-
31
- # কালিতে সরাসরি 'nmaping' কমান্ড দিয়ে রান করানোর গ্লোবাল স্ক্রিপ্ট
32
- [project.scripts]
33
- nmaping = "nmap:menu"
File without changes
File without changes