charan-stt 0.4__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,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: charan-stt
3
+ Version: 0.4
4
+ Summary: Speech to text package
5
+ Author: Charan Harsha
6
+ Author-email: charanharsha@gmail.com
7
+ Requires-Python: >=3.8
8
+ Requires-Dist: selenium
9
+ Requires-Dist: webdriver-manager
10
+ Dynamic: author
11
+ Dynamic: author-email
12
+ Dynamic: requires-dist
13
+ Dynamic: requires-python
14
+ Dynamic: summary
File without changes
@@ -0,0 +1,2 @@
1
+ def listen():
2
+ print("Listening...")
@@ -0,0 +1,14 @@
1
+ Metadata-Version: 2.4
2
+ Name: charan-stt
3
+ Version: 0.4
4
+ Summary: Speech to text package
5
+ Author: Charan Harsha
6
+ Author-email: charanharsha@gmail.com
7
+ Requires-Python: >=3.8
8
+ Requires-Dist: selenium
9
+ Requires-Dist: webdriver-manager
10
+ Dynamic: author
11
+ Dynamic: author-email
12
+ Dynamic: requires-dist
13
+ Dynamic: requires-python
14
+ Dynamic: summary
@@ -0,0 +1,8 @@
1
+ setup.py
2
+ charan_stt/__init__.py
3
+ charan_stt/main.py
4
+ charan_stt.egg-info/PKG-INFO
5
+ charan_stt.egg-info/SOURCES.txt
6
+ charan_stt.egg-info/dependency_links.txt
7
+ charan_stt.egg-info/requires.txt
8
+ charan_stt.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ selenium
2
+ webdriver-manager
@@ -0,0 +1 @@
1
+ charan_stt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,15 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="charan-stt",
5
+ version="0.4",
6
+ author="Charan Harsha",
7
+ author_email="charanharsha@gmail.com",
8
+ description="Speech to text package",
9
+ packages=find_packages(),
10
+ install_requires=[
11
+ "selenium",
12
+ "webdriver-manager"
13
+ ],
14
+ python_requires=">=3.8",
15
+ )