cybershieldx 1.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.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: cybershieldx
3
+ Version: 1.0.0
4
+ Summary: CyberShieldX - Cybersecurity and Network Utility Library
5
+ Author: Your Group Name
6
+ Requires-Python: >=3.8
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: cybershieldx
3
+ Version: 1.0.0
4
+ Summary: CyberShieldX - Cybersecurity and Network Utility Library
5
+ Author: Your Group Name
6
+ Requires-Python: >=3.8
7
+ Dynamic: author
8
+ Dynamic: requires-python
9
+ Dynamic: summary
@@ -0,0 +1,5 @@
1
+ setup.py
2
+ cybershieldx.egg-info/PKG-INFO
3
+ cybershieldx.egg-info/SOURCES.txt
4
+ cybershieldx.egg-info/dependency_links.txt
5
+ cybershieldx.egg-info/top_level.txt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,10 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="cybershieldx",
5
+ version="1.0.0",
6
+ author="Your Group Name",
7
+ description="CyberShieldX - Cybersecurity and Network Utility Library",
8
+ packages=find_packages(),
9
+ python_requires=">=3.8",
10
+ )