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.
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: hacking_stt
3
+ Version: 0.1
4
+ Summary: this is speech to text package by Kirat Choudhary
5
+ Author: Kirat Choudhary
6
+ Author-email: example@gmail.com
7
+ Dynamic: author
8
+ Dynamic: author-email
9
+ Dynamic: summary
File without changes
@@ -0,0 +1,9 @@
1
+ Metadata-Version: 2.4
2
+ Name: hacking_stt
3
+ Version: 0.1
4
+ Summary: this is speech to text package by Kirat Choudhary
5
+ Author: Kirat Choudhary
6
+ Author-email: example@gmail.com
7
+ Dynamic: author
8
+ Dynamic: author-email
9
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ hacking_stt/__init__.py
3
+ hacking_stt.egg-info/PKG-INFO
4
+ hacking_stt.egg-info/SOURCES.txt
5
+ hacking_stt.egg-info/dependency_links.txt
6
+ hacking_stt.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ hacking_stt
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )