nmaping 1.2__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,14 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nmaping
3
- Version: 1.2
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
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
12
  License-File: LICENSE
14
13
  Dynamic: license-file
@@ -0,0 +1 @@
1
+ #f
@@ -1,14 +1,13 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nmaping
3
- Version: 1.2
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
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
12
  License-File: LICENSE
14
13
  Dynamic: license-file
@@ -1,6 +1,8 @@
1
1
  LICENSE
2
2
  README.md
3
3
  pyproject.toml
4
+ nmaping/__init__.py
5
+ nmaping/nmap.cpython-313-x86_64-linux-gnu.so
4
6
  nmaping.egg-info/PKG-INFO
5
7
  nmaping.egg-info/SOURCES.txt
6
8
  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,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,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
File without changes