Silenthacker-STT 0.1__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.
- silenthacker_stt-0.1/PKG-INFO +12 -0
- silenthacker_stt-0.1/Silenthacker_STT.egg-info/PKG-INFO +12 -0
- silenthacker_stt-0.1/Silenthacker_STT.egg-info/SOURCES.txt +6 -0
- silenthacker_stt-0.1/Silenthacker_STT.egg-info/dependency_links.txt +1 -0
- silenthacker_stt-0.1/Silenthacker_STT.egg-info/requires.txt +2 -0
- silenthacker_stt-0.1/Silenthacker_STT.egg-info/top_level.txt +1 -0
- silenthacker_stt-0.1/setup.cfg +4 -0
- silenthacker_stt-0.1/setup.py +14 -0
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Silenthacker_STT
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: this is speech to text package created by lovely hacker
|
|
5
|
+
Author: Lovely hacker
|
|
6
|
+
Author-email: silenthacker036@gmail.com
|
|
7
|
+
Requires-Dist: selenium
|
|
8
|
+
Requires-Dist: webdriver_manager
|
|
9
|
+
Dynamic: author
|
|
10
|
+
Dynamic: author-email
|
|
11
|
+
Dynamic: requires-dist
|
|
12
|
+
Dynamic: summary
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: Silenthacker_STT
|
|
3
|
+
Version: 0.1
|
|
4
|
+
Summary: this is speech to text package created by lovely hacker
|
|
5
|
+
Author: Lovely hacker
|
|
6
|
+
Author-email: silenthacker036@gmail.com
|
|
7
|
+
Requires-Dist: selenium
|
|
8
|
+
Requires-Dist: webdriver_manager
|
|
9
|
+
Dynamic: author
|
|
10
|
+
Dynamic: author-email
|
|
11
|
+
Dynamic: requires-dist
|
|
12
|
+
Dynamic: summary
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='Silenthacker_STT',
|
|
5
|
+
version='0.1',
|
|
6
|
+
author='Lovely hacker',
|
|
7
|
+
author_email='silenthacker036@gmail.com',
|
|
8
|
+
description='this is speech to text package created by lovely hacker',
|
|
9
|
+
packages=find_packages(),
|
|
10
|
+
install_requires=[
|
|
11
|
+
'selenium',
|
|
12
|
+
'webdriver_manager'
|
|
13
|
+
]
|
|
14
|
+
)
|