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.
- charan_stt-0.4/PKG-INFO +14 -0
- charan_stt-0.4/charan_stt/__init__.py +0 -0
- charan_stt-0.4/charan_stt/main.py +2 -0
- charan_stt-0.4/charan_stt.egg-info/PKG-INFO +14 -0
- charan_stt-0.4/charan_stt.egg-info/SOURCES.txt +8 -0
- charan_stt-0.4/charan_stt.egg-info/dependency_links.txt +1 -0
- charan_stt-0.4/charan_stt.egg-info/requires.txt +2 -0
- charan_stt-0.4/charan_stt.egg-info/top_level.txt +1 -0
- charan_stt-0.4/setup.cfg +4 -0
- charan_stt-0.4/setup.py +15 -0
charan_stt-0.4/PKG-INFO
ADDED
|
@@ -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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
charan_stt
|
charan_stt-0.4/setup.cfg
ADDED
charan_stt-0.4/setup.py
ADDED
|
@@ -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
|
+
)
|