nmaping 1.1__tar.gz → 1.3__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,12 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nmaping
3
- Version: 1.1
3
+ Version: 1.3
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
+ Project-URL: Homepage, https://github.com/mrtan-official/Nmap-scaning
7
8
  Classifier: Programming Language :: Python :: 3
8
- Classifier: Operating System :: OS Independent
9
- Requires-Python: >=3.7
9
+ Classifier: Operating System :: POSIX :: Linux
10
+ Requires-Python: >=3.13
10
11
  Description-Content-Type: text/markdown
11
12
  License-File: LICENSE
12
13
  Dynamic: license-file
@@ -0,0 +1 @@
1
+ #f
@@ -1,12 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nmaping
3
- Version: 1.1
3
+ Version: 1.3
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
+ Project-URL: Homepage, https://github.com/mrtan-official/Nmap-scaning
7
8
  Classifier: Programming Language :: Python :: 3
8
- Classifier: Operating System :: OS Independent
9
- Requires-Python: >=3.7
9
+ Classifier: Operating System :: POSIX :: Linux
10
+ Requires-Python: >=3.13
10
11
  Description-Content-Type: text/markdown
11
12
  License-File: LICENSE
12
13
  Dynamic: license-file
@@ -0,0 +1,10 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ nmaping/__init__.py
5
+ nmaping/nmap.cpython-313-x86_64-linux-gnu.so
6
+ nmaping.egg-info/PKG-INFO
7
+ nmaping.egg-info/SOURCES.txt
8
+ nmaping.egg-info/dependency_links.txt
9
+ nmaping.egg-info/entry_points.txt
10
+ nmaping.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ nmaping = nmaping.nmap:menu
@@ -0,0 +1 @@
1
+ nmaping
@@ -0,0 +1,35 @@
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.3" # নতুন ভার্সন ১.৫ দিন
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" # যেহেতু .so ফাইলটি শুধু পাইথন ৩.১৩ তে চলবে
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
+ # সেটআপুলসকে অটোমেটিক nmaping ফোল্ডারটি খুঁজতে বলা হচ্ছে
25
+ [tool.setuptools.packages.find]
26
+ where = ["."]
27
+ include = ["nmaping*"]
28
+
29
+ # প্যাকেজের ভেতরের সব .so ফাইল অন্তর্ভুক্ত করার নির্দেশ
30
+ [tool.setuptools.package-data]
31
+ nmaping = ["*.so"]
32
+
33
+ # কালিতে সরাসরি রান করার জন্য স্ক্রিপ্ট এন্ট্রি পয়েন্ট
34
+ [project.scripts]
35
+ nmaping = "nmaping.nmap:menu"
@@ -1,7 +0,0 @@
1
- LICENSE
2
- README.md
3
- pyproject.toml
4
- nmaping.egg-info/PKG-INFO
5
- nmaping.egg-info/SOURCES.txt
6
- nmaping.egg-info/dependency_links.txt
7
- nmaping.egg-info/top_level.txt
@@ -1 +0,0 @@
1
-
@@ -1,23 +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.1" # <-- আমরা নতুন করে পুশ দিচ্ছি তাই ভার্সন পরিবর্তন করে 0.1.1 করা হয়েছে
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
- [tool.setuptools.packages.find]
22
- where = ["."]
23
- include = ["nmap.py"]
File without changes
File without changes
File without changes