UniversalSpeech 1.0.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.
- UniversalSpeech-1.0.0/PKG-INFO +7 -0
- UniversalSpeech-1.0.0/UniversalSpeech.egg-info/PKG-INFO +7 -0
- UniversalSpeech-1.0.0/UniversalSpeech.egg-info/SOURCES.txt +5 -0
- UniversalSpeech-1.0.0/UniversalSpeech.egg-info/dependency_links.txt +1 -0
- UniversalSpeech-1.0.0/UniversalSpeech.egg-info/top_level.txt +1 -0
- UniversalSpeech-1.0.0/setup.cfg +4 -0
- UniversalSpeech-1.0.0/setup.py +16 -0
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: UniversalSpeech
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: UniversalSpeech aims to streamline and simplify access to speech within applications. It accomplishes this by providing a unified interface that allows speech to be achieved through various means, including active screen readers, direct synthesis, or native/OS speech engines. The library dynamically adapts based on what is available and supported, offering a cohesive and versatile solution for speech-related functionalities.
|
|
5
|
+
Author: Mahmoud Atef
|
|
6
|
+
Author-email: mahmoud.atef.987123@gmail.com
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: UniversalSpeech
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: UniversalSpeech aims to streamline and simplify access to speech within applications. It accomplishes this by providing a unified interface that allows speech to be achieved through various means, including active screen readers, direct synthesis, or native/OS speech engines. The library dynamically adapts based on what is available and supported, offering a cohesive and versatile solution for speech-related functionalities.
|
|
5
|
+
Author: Mahmoud Atef
|
|
6
|
+
Author-email: mahmoud.atef.987123@gmail.com
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
import platform
|
|
3
|
+
|
|
4
|
+
# Determine the package folder based on the system architecture
|
|
5
|
+
package_folder = "lib" if platform.architecture()[0] == "32bit" else "lib64"
|
|
6
|
+
|
|
7
|
+
setup(
|
|
8
|
+
name='UniversalSpeech',
|
|
9
|
+
version='1.0.0',
|
|
10
|
+
packages=find_packages(),
|
|
11
|
+
package_data={'': [f'{package_folder}/*']},
|
|
12
|
+
author='Mahmoud Atef',
|
|
13
|
+
author_email='mahmoud.atef.987123@gmail.com',
|
|
14
|
+
description='UniversalSpeech aims to streamline and simplify access to speech within applications. It accomplishes this by providing a unified interface that allows speech to be achieved through various means, including active screen readers, direct synthesis, or native/OS speech engines. The library dynamically adapts based on what is available and supported, offering a cohesive and versatile solution for speech-related functionalities.',
|
|
15
|
+
long_description_content_type="text/markdown",
|
|
16
|
+
)
|