gubbi 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.
gubbi-1.0.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Prahlad Yeri
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
gubbi-1.0.0/PKG-INFO ADDED
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.1
2
+ Name: gubbi
3
+ Version: 1.0.0
4
+ Summary: Minimalist terminal LLM chatbot
5
+ Home-page: UNKNOWN
6
+ Author: Prahlad Yeri
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/prahladyeri/gubbi
9
+ Project-URL: Repository, https://github.com/prahladyeri/gubbi
10
+ Project-URL: Issues, https://github.com/prahladyeri/gubbi/issues
11
+ Description: ![python](https://img.shields.io/pypi/pyversions/gubbi.svg)
12
+ ![license](https://img.shields.io/github/license/prahladyeri/gubbi.svg)
13
+ [![patreon](https://img.shields.io/badge/Patreon-brown.svg?logo=patreon)](https://www.patreon.com/prahladyeri)
14
+ [![paypal](https://img.shields.io/badge/PayPal-blue.svg?logo=paypal)](https://paypal.me/prahladyeri)
15
+ [![follow](https://img.shields.io/twitter/follow/prahladyeri.svg?style=social)](https://x.com/prahladyeri)
16
+
17
+ # gubbi
18
+
19
+ Minimalist terminal LLM chatbot
20
+
21
+ # Installation
22
+
23
+ pip install gubbi
24
+ Keywords: llm,chatbot,terminal
25
+ Platform: UNKNOWN
26
+ Classifier: Programming Language :: Python :: 3
27
+ Classifier: Programming Language :: Python :: 3.8
28
+ Classifier: License :: OSI Approved :: MIT License
29
+ Classifier: Operating System :: OS Independent
30
+ Classifier: Environment :: Console
31
+ Requires-Python: >=3.8
32
+ Description-Content-Type: text/markdown
gubbi-1.0.0/README.md ADDED
@@ -0,0 +1,13 @@
1
+ ![python](https://img.shields.io/pypi/pyversions/gubbi.svg)
2
+ ![license](https://img.shields.io/github/license/prahladyeri/gubbi.svg)
3
+ [![patreon](https://img.shields.io/badge/Patreon-brown.svg?logo=patreon)](https://www.patreon.com/prahladyeri)
4
+ [![paypal](https://img.shields.io/badge/PayPal-blue.svg?logo=paypal)](https://paypal.me/prahladyeri)
5
+ [![follow](https://img.shields.io/twitter/follow/prahladyeri.svg?style=social)](https://x.com/prahladyeri)
6
+
7
+ # gubbi
8
+
9
+ Minimalist terminal LLM chatbot
10
+
11
+ # Installation
12
+
13
+ pip install gubbi
gubbi-1.0.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
gubbi-1.0.0/setup.py ADDED
@@ -0,0 +1,50 @@
1
+ from pathlib import Path
2
+ from setuptools import setup, find_packages
3
+
4
+ HERE = Path(__file__).parent
5
+
6
+ setup(
7
+ name="gubbi",
8
+ version="1.0.0",
9
+ description="Minimalist terminal LLM chatbot",
10
+ long_description=(HERE / "README.md").read_text(encoding="utf-8"),
11
+ long_description_content_type="text/markdown",
12
+ author="Prahlad Yeri",
13
+ license="MIT",
14
+ python_requires=">=3.8",
15
+
16
+ packages=find_packages(where="src"),
17
+ package_dir={"": "src"},
18
+
19
+ install_requires=[
20
+ "requests>=2.32.3",
21
+ "openai>=1.109,<2",
22
+ "colorama>=0.4.6",
23
+ ],
24
+
25
+ entry_points={
26
+ "console_scripts": [
27
+ "gubbi=gubbi.cli:main",
28
+ ]
29
+ },
30
+
31
+ keywords=[
32
+ "llm",
33
+ "chatbot",
34
+ "terminal",
35
+ ],
36
+
37
+ classifiers=[
38
+ "Programming Language :: Python :: 3",
39
+ "Programming Language :: Python :: 3.8",
40
+ "License :: OSI Approved :: MIT License",
41
+ "Operating System :: OS Independent",
42
+ "Environment :: Console",
43
+ ],
44
+
45
+ project_urls={
46
+ "Homepage": "https://github.com/prahladyeri/gubbi",
47
+ "Repository": "https://github.com/prahladyeri/gubbi",
48
+ "Issues": "https://github.com/prahladyeri/gubbi/issues",
49
+ },
50
+ )
File without changes
@@ -0,0 +1,12 @@
1
+ ##
2
+ # cli.py
3
+ #
4
+ # @author Prahlad Yeri <prahladyeri@yahoo.com>
5
+ # @license MIT
6
+ from utils import cfghelper
7
+
8
+ def main():
9
+ print("Hello, World")
10
+
11
+ if __name__ == '__main__':
12
+ main()
@@ -0,0 +1,32 @@
1
+ Metadata-Version: 2.1
2
+ Name: gubbi
3
+ Version: 1.0.0
4
+ Summary: Minimalist terminal LLM chatbot
5
+ Home-page: UNKNOWN
6
+ Author: Prahlad Yeri
7
+ License: MIT
8
+ Project-URL: Homepage, https://github.com/prahladyeri/gubbi
9
+ Project-URL: Repository, https://github.com/prahladyeri/gubbi
10
+ Project-URL: Issues, https://github.com/prahladyeri/gubbi/issues
11
+ Description: ![python](https://img.shields.io/pypi/pyversions/gubbi.svg)
12
+ ![license](https://img.shields.io/github/license/prahladyeri/gubbi.svg)
13
+ [![patreon](https://img.shields.io/badge/Patreon-brown.svg?logo=patreon)](https://www.patreon.com/prahladyeri)
14
+ [![paypal](https://img.shields.io/badge/PayPal-blue.svg?logo=paypal)](https://paypal.me/prahladyeri)
15
+ [![follow](https://img.shields.io/twitter/follow/prahladyeri.svg?style=social)](https://x.com/prahladyeri)
16
+
17
+ # gubbi
18
+
19
+ Minimalist terminal LLM chatbot
20
+
21
+ # Installation
22
+
23
+ pip install gubbi
24
+ Keywords: llm,chatbot,terminal
25
+ Platform: UNKNOWN
26
+ Classifier: Programming Language :: Python :: 3
27
+ Classifier: Programming Language :: Python :: 3.8
28
+ Classifier: License :: OSI Approved :: MIT License
29
+ Classifier: Operating System :: OS Independent
30
+ Classifier: Environment :: Console
31
+ Requires-Python: >=3.8
32
+ Description-Content-Type: text/markdown
@@ -0,0 +1,11 @@
1
+ LICENSE
2
+ README.md
3
+ setup.py
4
+ src/gubbi/__init__.py
5
+ src/gubbi/cli.py
6
+ src/gubbi.egg-info/PKG-INFO
7
+ src/gubbi.egg-info/SOURCES.txt
8
+ src/gubbi.egg-info/dependency_links.txt
9
+ src/gubbi.egg-info/entry_points.txt
10
+ src/gubbi.egg-info/requires.txt
11
+ src/gubbi.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ gubbi = gubbi.cli:main
3
+
@@ -0,0 +1,3 @@
1
+ requests>=2.32.3
2
+ openai<2,>=1.109
3
+ colorama>=0.4.6
@@ -0,0 +1 @@
1
+ gubbi