spitch 0.0.7__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.
Potentially problematic release.
This version of spitch might be problematic. Click here for more details.
- spitch-0.0.7/PKG-INFO +25 -0
- spitch-0.0.7/README.md +1 -0
- spitch-0.0.7/dialog/__init__.py +1 -0
- spitch-0.0.7/dialog/app.py +0 -0
- spitch-0.0.7/setup.cfg +4 -0
- spitch-0.0.7/setup.py +43 -0
- spitch-0.0.7/spitch.egg-info/PKG-INFO +25 -0
- spitch-0.0.7/spitch.egg-info/SOURCES.txt +8 -0
- spitch-0.0.7/spitch.egg-info/dependency_links.txt +1 -0
- spitch-0.0.7/spitch.egg-info/top_level.txt +1 -0
spitch-0.0.7/PKG-INFO
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: spitch
|
|
3
|
+
Version: 0.0.7
|
|
4
|
+
Home-page: https://github.com/Babs-Technologies/dialog
|
|
5
|
+
Author: Babs Technologies
|
|
6
|
+
Author-email:
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: speech,voice,text
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Classifier: Topic :: Software Development
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
|
|
25
|
+
Use the adapter framework to run any large model.
|
spitch-0.0.7/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# dialog
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.0.7"
|
|
File without changes
|
spitch-0.0.7/setup.cfg
ADDED
spitch-0.0.7/setup.py
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
import codecs
|
|
2
|
+
import os.path
|
|
3
|
+
import re
|
|
4
|
+
|
|
5
|
+
from setuptools import setup, find_packages
|
|
6
|
+
|
|
7
|
+
this_folder = os.path.abspath(os.path.dirname(__file__))
|
|
8
|
+
with codecs.open(os.path.join(this_folder, "dialog/__init__.py"), encoding="utf-8") as init_file:
|
|
9
|
+
version_match = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", init_file.read(), re.M)
|
|
10
|
+
version_string = version_match.group(1)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
setup(
|
|
14
|
+
name="spitch",
|
|
15
|
+
version=version_string,
|
|
16
|
+
description="",
|
|
17
|
+
long_description="Use the adapter framework to run any large model.",
|
|
18
|
+
author="Babs Technologies",
|
|
19
|
+
author_email="",
|
|
20
|
+
url="https://github.com/Babs-Technologies/dialog",
|
|
21
|
+
packages=find_packages(exclude=["tests"]),
|
|
22
|
+
include_package_data=True,
|
|
23
|
+
license="MIT",
|
|
24
|
+
install_requires=[],
|
|
25
|
+
classifiers=[
|
|
26
|
+
"Development Status :: 4 - Beta",
|
|
27
|
+
"Intended Audience :: Developers",
|
|
28
|
+
"Intended Audience :: Science/Research",
|
|
29
|
+
"License :: OSI Approved :: Apache Software License",
|
|
30
|
+
"Programming Language :: Python :: 3",
|
|
31
|
+
"Programming Language :: Python :: 3.7",
|
|
32
|
+
"Programming Language :: Python :: 3.8",
|
|
33
|
+
"Programming Language :: Python :: 3.9",
|
|
34
|
+
"Programming Language :: Python :: 3.10",
|
|
35
|
+
"Topic :: Scientific/Engineering",
|
|
36
|
+
"Topic :: Scientific/Engineering :: Mathematics",
|
|
37
|
+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
|
|
38
|
+
"Topic :: Software Development",
|
|
39
|
+
"Topic :: Software Development :: Libraries",
|
|
40
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
41
|
+
],
|
|
42
|
+
keywords="speech, voice, text",
|
|
43
|
+
)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: spitch
|
|
3
|
+
Version: 0.0.7
|
|
4
|
+
Home-page: https://github.com/Babs-Technologies/dialog
|
|
5
|
+
Author: Babs Technologies
|
|
6
|
+
Author-email:
|
|
7
|
+
License: MIT
|
|
8
|
+
Keywords: speech,voice,text
|
|
9
|
+
Classifier: Development Status :: 4 - Beta
|
|
10
|
+
Classifier: Intended Audience :: Developers
|
|
11
|
+
Classifier: Intended Audience :: Science/Research
|
|
12
|
+
Classifier: License :: OSI Approved :: Apache Software License
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.7
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
18
|
+
Classifier: Topic :: Scientific/Engineering
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
20
|
+
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
|
|
21
|
+
Classifier: Topic :: Software Development
|
|
22
|
+
Classifier: Topic :: Software Development :: Libraries
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
|
|
25
|
+
Use the adapter framework to run any large model.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
dialog
|