opsec-panel 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,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: opsec-panel
3
+ Version: 1.0.0
4
+ Summary: OPSEC panel installer
5
+ Author: Khobz UHQ
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: opsec-panel
3
+ Version: 1.0.0
4
+ Summary: OPSEC panel installer
5
+ Author: Khobz UHQ
6
+ Dynamic: author
7
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ opsec_panel.egg-info/PKG-INFO
3
+ opsec_panel.egg-info/SOURCES.txt
4
+ opsec_panel.egg-info/dependency_links.txt
5
+ opsec_panel.egg-info/entry_points.txt
6
+ opsec_panel.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ opsec-install = opsec.install:install_panel
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,16 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="opsec-panel",
5
+ version="1.0.0",
6
+ packages=find_packages(),
7
+ author="Khobz UHQ",
8
+ description="OPSEC panel installer",
9
+ python_requiers=">=3.8",
10
+ entry_points={
11
+ 'console_scripts': [
12
+ "opsec-install=opsec.install:install_panel"
13
+ ]
14
+ },
15
+
16
+ )