ohno-cli 0.0.1__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,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: ohno-cli
3
+ Version: 0.0.1
4
+ Summary: AI-powered terminal error explainer
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+
8
+ # ohno-cli
9
+
10
+ AI-powered terminal error explainer.
11
+
12
+ Coming soon.
@@ -0,0 +1,5 @@
1
+ # ohno-cli
2
+
3
+ AI-powered terminal error explainer.
4
+
5
+ Coming soon.
@@ -0,0 +1,2 @@
1
+ def main():
2
+ print("ohno-cli coming soon")
@@ -0,0 +1,12 @@
1
+ Metadata-Version: 2.4
2
+ Name: ohno-cli
3
+ Version: 0.0.1
4
+ Summary: AI-powered terminal error explainer
5
+ Requires-Python: >=3.8
6
+ Description-Content-Type: text/markdown
7
+
8
+ # ohno-cli
9
+
10
+ AI-powered terminal error explainer.
11
+
12
+ Coming soon.
@@ -0,0 +1,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ ohno_cli/__init__.py
4
+ ohno_cli.egg-info/PKG-INFO
5
+ ohno_cli.egg-info/SOURCES.txt
6
+ ohno_cli.egg-info/dependency_links.txt
7
+ ohno_cli.egg-info/entry_points.txt
8
+ ohno_cli.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ohno = ohno_cli:main
@@ -0,0 +1,2 @@
1
+ dist
2
+ ohno_cli
@@ -0,0 +1,16 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [tool.setuptools.packages.find]
6
+ where = ["."]
7
+
8
+ [project]
9
+ name = "ohno-cli"
10
+ version = "0.0.1"
11
+ description = "AI-powered terminal error explainer"
12
+ readme = "README.md"
13
+ requires-python = ">=3.8"
14
+
15
+ [project.scripts]
16
+ ohno = "ohno_cli:main"
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+