hacking-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.
- hacking_stt-0.1/PKG-INFO +9 -0
- hacking_stt-0.1/hacking_stt/__init__.py +0 -0
- hacking_stt-0.1/hacking_stt.egg-info/PKG-INFO +9 -0
- hacking_stt-0.1/hacking_stt.egg-info/SOURCES.txt +6 -0
- hacking_stt-0.1/hacking_stt.egg-info/dependency_links.txt +1 -0
- hacking_stt-0.1/hacking_stt.egg-info/top_level.txt +1 -0
- hacking_stt-0.1/setup.cfg +4 -0
- hacking_stt-0.1/setup.py +26 -0
hacking_stt-0.1/PKG-INFO
ADDED
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
hacking_stt
|
hacking_stt-0.1/setup.py
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
|
|
5
|
+
name='hacking_stt',
|
|
6
|
+
version='0.1',
|
|
7
|
+
packages = find_packages(),
|
|
8
|
+
author='Kirat Choudhary',
|
|
9
|
+
author_email='example@gmail.com',
|
|
10
|
+
description='this is speech to text package by Kirat Choudhary',
|
|
11
|
+
include_package_data=True,
|
|
12
|
+
package_data={
|
|
13
|
+
"hacking_stt": [
|
|
14
|
+
"*.html",
|
|
15
|
+
"*.css",
|
|
16
|
+
"*.js",
|
|
17
|
+
"*.txt",
|
|
18
|
+
]
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
install_requirements = [
|
|
23
|
+
'selenium',
|
|
24
|
+
'webdriver_manager',
|
|
25
|
+
]
|
|
26
|
+
)
|