krishi 1.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.
krishi-1.0/PKG-INFO ADDED
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: krishi
3
+ Version: 1.0
4
+ Summary: ntggggg
5
+ Author: henry
6
+ Requires-Dist: pyttsx3
7
+ Requires-Dist: customtkinter
8
+ Requires-Dist: ollama
9
+ Dynamic: author
10
+ Dynamic: requires-dist
11
+ Dynamic: summary
@@ -0,0 +1,11 @@
1
+ Metadata-Version: 2.4
2
+ Name: krishi
3
+ Version: 1.0
4
+ Summary: ntggggg
5
+ Author: henry
6
+ Requires-Dist: pyttsx3
7
+ Requires-Dist: customtkinter
8
+ Requires-Dist: ollama
9
+ Dynamic: author
10
+ Dynamic: requires-dist
11
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ krishi.egg-info/PKG-INFO
3
+ krishi.egg-info/SOURCES.txt
4
+ krishi.egg-info/dependency_links.txt
5
+ krishi.egg-info/requires.txt
6
+ krishi.egg-info/top_level.txt
@@ -0,0 +1,3 @@
1
+ pyttsx3
2
+ customtkinter
3
+ ollama
@@ -0,0 +1 @@
1
+
krishi-1.0/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
krishi-1.0/setup.py ADDED
@@ -0,0 +1,15 @@
1
+ from setuptools import setup,find_packages
2
+
3
+ setup(
4
+ name="krishi",
5
+ version="1.0",
6
+ packages= find_packages(),
7
+ install_requires=[
8
+ "pyttsx3",
9
+ "customtkinter",
10
+ "ollama",
11
+
12
+ ],
13
+ author= "henry",
14
+ description= " ntggggg",
15
+ )