omnigent-copilot 0.0.1__py3-none-any.whl
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,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: omnigent-copilot
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Reserved for Omnigent community use and to prevent malicious use.
|
|
5
|
+
Author-email: Zeyi Fan <pypi@zeyi.fan>
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/omnigent-ai/omnigent
|
|
8
|
+
Keywords: reserved,placeholder,security
|
|
9
|
+
Classifier: Development Status :: 7 - Inactive
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Topic :: Security
|
|
12
|
+
Requires-Python: >=3.7
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
|
|
15
|
+
# omnigent-copilot
|
|
16
|
+
|
|
17
|
+
**Reserved name — do not depend on this package.**
|
|
18
|
+
|
|
19
|
+
This name is reserved for Omnigent community use by the maintainers of Omnigent to prevent malicious use. It is an intentional placeholder and contains no functional code.
|
|
20
|
+
|
|
21
|
+
If you want to build something with this package name, please reach out to us on our GitHub: https://github.com/omnigent-ai/omnigent
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
omnigent_copilot.py,sha256=RHrhiuUK6qEMxmbxDEoTMhX9FnlEXHU6p_ucxMkideo,551
|
|
2
|
+
omnigent_copilot-0.0.1.dist-info/METADATA,sha256=mbCobi3JakqehZ3ZThSJi3MrpOZjEjOV3-BumrLjdGk,856
|
|
3
|
+
omnigent_copilot-0.0.1.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
4
|
+
omnigent_copilot-0.0.1.dist-info/top_level.txt,sha256=sRGYxm5vCJaXcWYRlCRZOxpWp-5oXuQvjSPi-CmAhUU,17
|
|
5
|
+
omnigent_copilot-0.0.1.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
omnigent_copilot
|
omnigent_copilot.py
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
"""Reserved placeholder for omnigent-copilot.
|
|
2
|
+
|
|
3
|
+
This name is reserved for Omnigent community use by the maintainers of Omnigent to prevent malicious use. It is an intentional placeholder and contains no functional code.
|
|
4
|
+
|
|
5
|
+
If you want to build something with this package name, please reach out to us on our GitHub: https://github.com/omnigent-ai/omnigent
|
|
6
|
+
"""
|
|
7
|
+
__version__ = "0.0.1"
|
|
8
|
+
|
|
9
|
+
raise ImportError(
|
|
10
|
+
"The 'omnigent-copilot' package is a reserved security placeholder and has "
|
|
11
|
+
"no functionality. See https://github.com/omnigent-ai/omnigent"
|
|
12
|
+
)
|