requiem-stt 0.2.0__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,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: requiem_stt
3
+ Version: 0.2.0
4
+ Summary: A speech-to-text module for Project Requiem
5
+ Author: Project Requiem
6
+ Author-email: your_email@example.com
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.7
11
+ Requires-Dist: selenium
12
+ Requires-Dist: webdriver_manager
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: requires-dist
17
+ Dynamic: requires-python
18
+ Dynamic: summary
@@ -0,0 +1,18 @@
1
+ Metadata-Version: 2.4
2
+ Name: requiem_stt
3
+ Version: 0.2.0
4
+ Summary: A speech-to-text module for Project Requiem
5
+ Author: Project Requiem
6
+ Author-email: your_email@example.com
7
+ Classifier: Programming Language :: Python :: 3
8
+ Classifier: License :: OSI Approved :: MIT License
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.7
11
+ Requires-Dist: selenium
12
+ Requires-Dist: webdriver_manager
13
+ Dynamic: author
14
+ Dynamic: author-email
15
+ Dynamic: classifier
16
+ Dynamic: requires-dist
17
+ Dynamic: requires-python
18
+ Dynamic: summary
@@ -0,0 +1,6 @@
1
+ setup.py
2
+ requiem_stt.egg-info/PKG-INFO
3
+ requiem_stt.egg-info/SOURCES.txt
4
+ requiem_stt.egg-info/dependency_links.txt
5
+ requiem_stt.egg-info/requires.txt
6
+ requiem_stt.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ selenium
2
+ webdriver_manager
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,20 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name="requiem_stt", # lowercase, PyPI prefers this format
5
+ version="0.2.0",
6
+ author="Project Requiem",
7
+ author_email="your_email@example.com", # optional but recommended
8
+ description="A speech-to-text module for Project Requiem",
9
+ packages=find_packages(),
10
+ install_requires=[
11
+ "selenium",
12
+ "webdriver_manager"
13
+ ],
14
+ python_requires=">=3.7",
15
+ classifiers=[
16
+ "Programming Language :: Python :: 3",
17
+ "License :: OSI Approved :: MIT License",
18
+ "Operating System :: OS Independent",
19
+ ],
20
+ )