godlike-opsec 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,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: godlike-opsec
3
+ Version: 1.0.0
4
+ Summary: opsec. made by g4 @callfowarding on cord
5
+ Author: g4
6
+ Author-email: meowmeow@1337.care
7
+ License: MIT
8
+ Requires-Python: >=3.6
9
+ Description-Content-Type: text/markdown
10
+ Dynamic: author
11
+ Dynamic: author-email
12
+ Dynamic: description
13
+ Dynamic: description-content-type
14
+ Dynamic: license
15
+ Dynamic: requires-python
16
+ Dynamic: summary
17
+
18
+ opsec.
@@ -0,0 +1 @@
1
+ opsec.
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: godlike-opsec
3
+ Version: 1.0.0
4
+ Summary: opsec. made by g4 @callfowarding on cord
5
+ Author: g4
6
+ Author-email: meowmeow@1337.care
7
+ License: MIT
8
+ Requires-Python: >=3.6
9
+ Description-Content-Type: text/markdown
10
+ Dynamic: author
11
+ Dynamic: author-email
12
+ Dynamic: description
13
+ Dynamic: description-content-type
14
+ Dynamic: license
15
+ Dynamic: requires-python
16
+ Dynamic: summary
17
+
18
+ opsec.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ setup.py
3
+ godlike_opsec.egg-info/PKG-INFO
4
+ godlike_opsec.egg-info/SOURCES.txt
5
+ godlike_opsec.egg-info/dependency_links.txt
6
+ godlike_opsec.egg-info/top_level.txt
7
+ opsec/__init__.py
8
+ opsec/utils.py
@@ -0,0 +1,10 @@
1
+ from .colors import Colors
2
+ from .gradients import Gradients
3
+ from .utils import ColorUtils
4
+
5
+ from .utils import EnableWindowsAnsiSupport
6
+ try:
7
+ EnableWindowsAnsiSupport()
8
+ except Exception as e:
9
+ print(f"Re install pip lib | pip install .")
10
+
@@ -0,0 +1,2 @@
1
+ def opsec():
2
+ return "opsec."
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,18 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ with open("README.md", "r", encoding="utf-8") as f:
4
+ long_description = f.read()
5
+
6
+ setup(
7
+ name="godlike-opsec",
8
+ version="1.0.0",
9
+ description="opsec. made by g4 @callfowarding on cord",
10
+ long_description=long_description,
11
+ long_description_content_type="text/markdown",
12
+ author="g4",
13
+ author_email="meowmeow@1337.care",
14
+ packages=find_packages(),
15
+ include_package_data=True,
16
+ python_requires='>=3.6',
17
+ license="MIT",
18
+ )