HyTech-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.
- hytech_stt-0.1/HyTech_STT.egg-info/PKG-INFO +7 -0
- hytech_stt-0.1/HyTech_STT.egg-info/SOURCES.txt +5 -0
- hytech_stt-0.1/HyTech_STT.egg-info/dependency_links.txt +1 -0
- hytech_stt-0.1/HyTech_STT.egg-info/top_level.txt +1 -0
- hytech_stt-0.1/PKG-INFO +7 -0
- hytech_stt-0.1/setup.cfg +4 -0
- hytech_stt-0.1/setup.py +13 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
hytech_stt-0.1/PKG-INFO
ADDED
hytech_stt-0.1/setup.cfg
ADDED
hytech_stt-0.1/setup.py
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name='HyTech_STT',
|
|
5
|
+
version='0.1',
|
|
6
|
+
author='Muhammad Abdullah',
|
|
7
|
+
description='This is Speech-to-text package created by Muhammad Abdullah,'
|
|
8
|
+
)
|
|
9
|
+
packages = find_packages(),
|
|
10
|
+
install_requirements = [
|
|
11
|
+
'selenium',
|
|
12
|
+
'webdriver_manager'
|
|
13
|
+
]
|