chatbotai-gui 1.0.1b1__tar.gz → 1.0.1rc2__tar.gz

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.2
2
+ Name: chatbotai-gui
3
+ Version: 1.0.1rc2
4
+ Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
5
+ Author: ProgMEM-CC
6
+ License: AGPL-3.0-or-later
7
+ Requires-Dist: openai
8
+ Requires-Dist: meta_ai_api
9
+ Requires-Dist: google-generativeai
10
+ Provides-Extra: dev
11
+ Requires-Dist: pytest; extra == "dev"
12
+ Requires-Dist: pytest-cov; extra == "dev"
13
+ Requires-Dist: coverage; extra == "dev"
14
+ Requires-Dist: flake8; extra == "dev"
15
+ Requires-Dist: black; extra == "dev"
16
+ Requires-Dist: isort; extra == "dev"
@@ -0,0 +1,2 @@
1
+ from .chatbotgui import ChatbotApp # Import the ChatbotApp class from chatbotgui module
2
+ ChatbotApp().run() # Create an instance of ChatbotApp and run the GUI main loop
@@ -0,0 +1,16 @@
1
+ Metadata-Version: 2.2
2
+ Name: chatbotai-gui
3
+ Version: 1.0.1rc2
4
+ Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
5
+ Author: ProgMEM-CC
6
+ License: AGPL-3.0-or-later
7
+ Requires-Dist: openai
8
+ Requires-Dist: meta_ai_api
9
+ Requires-Dist: google-generativeai
10
+ Provides-Extra: dev
11
+ Requires-Dist: pytest; extra == "dev"
12
+ Requires-Dist: pytest-cov; extra == "dev"
13
+ Requires-Dist: coverage; extra == "dev"
14
+ Requires-Dist: flake8; extra == "dev"
15
+ Requires-Dist: black; extra == "dev"
16
+ Requires-Dist: isort; extra == "dev"
@@ -1,9 +1,9 @@
1
1
  pyproject.toml
2
- setup.py
3
2
  chatai/__init__.py
4
3
  chatai/__main__.py
5
4
  chatai/chatbotgui.py
6
5
  chatbotai_gui.egg-info/PKG-INFO
7
6
  chatbotai_gui.egg-info/SOURCES.txt
8
7
  chatbotai_gui.egg-info/dependency_links.txt
8
+ chatbotai_gui.egg-info/requires.txt
9
9
  chatbotai_gui.egg-info/top_level.txt
@@ -0,0 +1,11 @@
1
+ openai
2
+ meta_ai_api
3
+ google-generativeai
4
+
5
+ [dev]
6
+ pytest
7
+ pytest-cov
8
+ coverage
9
+ flake8
10
+ black
11
+ isort
@@ -0,0 +1,32 @@
1
+ [build-system]
2
+ requires = ["setuptools>=66", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "chatbotai-gui"
7
+ version = "1.0.1rc2"
8
+ description = "A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI."
9
+ authors = [{ name = "ProgMEM-CC" }]
10
+ license = { text = "AGPL-3.0-or-later" } # ✅ No `license-file`
11
+ dependencies = [
12
+ "openai",
13
+ "meta_ai_api",
14
+ "google-generativeai"
15
+ ]
16
+
17
+ [project.optional-dependencies]
18
+ dev = [
19
+ "pytest",
20
+ "pytest-cov",
21
+ "coverage",
22
+ "flake8",
23
+ "black",
24
+ "isort"
25
+ ]
26
+
27
+ [tool.setuptools]
28
+ packages = ["chatai"]
29
+ license-files = [] # ✅ Explicitly disable auto-detecting LICENSE file
30
+
31
+ [tool.setuptools.package-data]
32
+ "chatai" = ["*.txt", "*.md", "*.json"]
@@ -1,6 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: chatbotai-gui
3
- Version: 1.0.1b1
4
- Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
5
- Author: ProgMEM-CC
6
- License: AGPL-3.0-or-later
@@ -1,2 +0,0 @@
1
- from chatbotgui import ChatbotApp # Import the ChatbotApp class from chatbotgui module
2
- ChatbotApp().run() # Create an instance of ChatbotApp and run the GUI main loop
@@ -1,6 +0,0 @@
1
- Metadata-Version: 2.2
2
- Name: chatbotai-gui
3
- Version: 1.0.1b1
4
- Summary: A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.
5
- Author: ProgMEM-CC
6
- License: AGPL-3.0-or-later
@@ -1,15 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools>=42", "wheel"]
3
- build-backend = "setuptools.build_meta"
4
-
5
- [project]
6
- name = "chatbotai-gui"
7
- version = "1.0.1b1"
8
- description = "A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI."
9
- license = { text = "AGPL-3.0-or-later" } # ⬅️ Set the license **statically**
10
- authors = [
11
- { name = "ProgMEM-CC" }
12
- ]
13
-
14
- [tool.setuptools.packages]
15
- find = {} # ⬅️ Automatically find packages
@@ -1,32 +0,0 @@
1
- from setuptools import setup
2
-
3
- setup(
4
- name='chatbotai-gui',
5
- version='1.0.1b1',
6
- packages=['chatai'],
7
- license='AGPL-3.0-or-later',
8
- description='A chatbot GUI that uses OpenAI, MetaAI, and Google Generative AI.',
9
- # Metadata
10
- author='ProgMEM-CC',
11
-
12
- # Required dependencies
13
- install_requires=[
14
- 'openai',
15
- 'google.generativeai',
16
- 'meta_ai_api'
17
- ],
18
-
19
- # Optional dependencies
20
- extras_require={
21
- 'dev': [
22
- 'pytest',
23
- 'pytest-cov',
24
- 'coverage',
25
- 'flake8',
26
- 'black',
27
- 'isort'
28
- ]
29
- },
30
- include_package_data=True, # Ensures extra files like LICENSE are included
31
- license_files=[]
32
- )