nmaping 1.3__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.
- {nmaping-1.3 → nmaping-1.4}/PKG-INFO +1 -3
- nmaping-1.4/nmaping/__init__.py +1 -0
- {nmaping-1.3 → nmaping-1.4}/nmaping.egg-info/PKG-INFO +1 -3
- {nmaping-1.3 → nmaping-1.4}/nmaping.egg-info/SOURCES.txt +0 -1
- {nmaping-1.3 → nmaping-1.4}/pyproject.toml +2 -5
- nmaping-1.3/LICENSE +0 -6
- nmaping-1.3/nmaping/__init__.py +0 -1
- {nmaping-1.3 → nmaping-1.4}/README.md +0 -0
- {nmaping-1.3 → nmaping-1.4}/nmaping/nmap.cpython-313-x86_64-linux-gnu.so +0 -0
- {nmaping-1.3 → nmaping-1.4}/nmaping.egg-info/dependency_links.txt +0 -0
- {nmaping-1.3 → nmaping-1.4}/nmaping.egg-info/entry_points.txt +0 -0
- {nmaping-1.3 → nmaping-1.4}/nmaping.egg-info/top_level.txt +0 -0
- {nmaping-1.3 → nmaping-1.4}/setup.cfg +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nmaping
|
|
3
|
-
Version: 1.
|
|
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
|
|
@@ -9,8 +9,6 @@ Classifier: Programming Language :: Python :: 3
|
|
|
9
9
|
Classifier: Operating System :: POSIX :: Linux
|
|
10
10
|
Requires-Python: >=3.13
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
|
-
License-File: LICENSE
|
|
13
|
-
Dynamic: license-file
|
|
14
12
|
|
|
15
13
|
# Nmap-scaning
|
|
16
14
|
This code write by Mr Tan.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
from .nmap import *
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: nmaping
|
|
3
|
-
Version: 1.
|
|
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
|
|
@@ -9,8 +9,6 @@ Classifier: Programming Language :: Python :: 3
|
|
|
9
9
|
Classifier: Operating System :: POSIX :: Linux
|
|
10
10
|
Requires-Python: >=3.13
|
|
11
11
|
Description-Content-Type: text/markdown
|
|
12
|
-
License-File: LICENSE
|
|
13
|
-
Dynamic: license-file
|
|
14
12
|
|
|
15
13
|
# Nmap-scaning
|
|
16
14
|
This code write by Mr Tan.
|
|
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "nmaping"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.4"
|
|
8
8
|
authors = [
|
|
9
9
|
{ name="Abu Tanim", email="mrtanvai@gmail.com" },
|
|
10
10
|
]
|
|
11
11
|
description = "An automation and network scanning utility tool."
|
|
12
12
|
readme = "README.md"
|
|
13
|
-
requires-python = ">=3.13"
|
|
13
|
+
requires-python = ">=3.13"
|
|
14
14
|
license = { text = "Custom License" }
|
|
15
15
|
|
|
16
16
|
classifiers = [
|
|
@@ -21,15 +21,12 @@ classifiers = [
|
|
|
21
21
|
[project.urls]
|
|
22
22
|
Homepage = "https://github.com/mrtan-official/Nmap-scaning"
|
|
23
23
|
|
|
24
|
-
# সেটআপুলসকে অটোমেটিক nmaping ফোল্ডারটি খুঁজতে বলা হচ্ছে
|
|
25
24
|
[tool.setuptools.packages.find]
|
|
26
25
|
where = ["."]
|
|
27
26
|
include = ["nmaping*"]
|
|
28
27
|
|
|
29
|
-
# প্যাকেজের ভেতরের সব .so ফাইল অন্তর্ভুক্ত করার নির্দেশ
|
|
30
28
|
[tool.setuptools.package-data]
|
|
31
29
|
nmaping = ["*.so"]
|
|
32
30
|
|
|
33
|
-
# কালিতে সরাসরি রান করার জন্য স্ক্রিপ্ট এন্ট্রি পয়েন্ট
|
|
34
31
|
[project.scripts]
|
|
35
32
|
nmaping = "nmaping.nmap:menu"
|
nmaping-1.3/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.
|
nmaping-1.3/nmaping/__init__.py
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
#f
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|