par-cli-tts 0.1.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,271 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ *.manifest
31
+ *.spec
32
+
33
+ # Installer logs
34
+ pip-log.txt
35
+ pip-delete-this-directory.txt
36
+
37
+ # Unit test / coverage reports
38
+ htmlcov/
39
+ .tox/
40
+ .nox/
41
+ .coverage
42
+ .coverage.*
43
+ .cache
44
+ nosetests.xml
45
+ coverage.xml
46
+ *.cover
47
+ *.py,cover
48
+ .hypothesis/
49
+ .pytest_cache/
50
+ cover/
51
+
52
+ # Translations
53
+ *.mo
54
+ *.pot
55
+
56
+ # Django stuff:
57
+ *.log
58
+ local_settings.py
59
+ db.sqlite3
60
+ db.sqlite3-journal
61
+
62
+ # Flask stuff:
63
+ instance/
64
+ .webassets-cache
65
+
66
+ # Scrapy stuff:
67
+ .scrapy
68
+
69
+ # Sphinx documentation
70
+ docs/_build/
71
+
72
+ # PyBuilder
73
+ .pybuilder/
74
+ target/
75
+
76
+ # Jupyter Notebook
77
+ .ipynb_checkpoints
78
+
79
+ # IPython
80
+ profile_default/
81
+ ipython_config.py
82
+
83
+ # pyenv
84
+ .python-version
85
+
86
+ # pipenv
87
+ Pipfile.lock
88
+
89
+ # poetry
90
+ poetry.lock
91
+
92
+ # pdm
93
+ .pdm.toml
94
+ .pdm-python
95
+ .pdm-build/
96
+
97
+ # PEP 582
98
+ __pypackages__/
99
+
100
+ # Celery stuff
101
+ celerybeat-schedule
102
+ celerybeat.pid
103
+
104
+ # SageMath parsed files
105
+ *.sage.py
106
+
107
+ # Environments
108
+ .env
109
+ .venv
110
+ env/
111
+ venv/
112
+ ENV/
113
+ env.bak/
114
+ venv.bak/
115
+
116
+ # Spyder project settings
117
+ .spyderproject
118
+ .spyproject
119
+
120
+ # Rope project settings
121
+ .ropeproject
122
+
123
+ # mkdocs documentation
124
+ /site
125
+
126
+ # mypy
127
+ .mypy_cache/
128
+ .dmypy.json
129
+ dmypy.json
130
+
131
+ # Pyre type checker
132
+ .pyre/
133
+
134
+ # pytype static type analyzer
135
+ .pytype/
136
+
137
+ # Cython debug symbols
138
+ cython_debug/
139
+
140
+ # PyCharm
141
+ .idea/
142
+ *.iml
143
+ *.iws
144
+ *.ipr
145
+
146
+ # VS Code
147
+ .vscode/
148
+ *.code-workspace
149
+ .history/
150
+
151
+ # Sublime Text
152
+ *.sublime-project
153
+ *.sublime-workspace
154
+
155
+ # Vim
156
+ [._]*.s[a-v][a-z]
157
+ [._]*.sw[a-p]
158
+ [._]s[a-rt-v][a-z]
159
+ [._]ss[a-gi-z]
160
+ [._]sw[a-p]
161
+ *.un~
162
+ Session.vim
163
+ .netrwhist
164
+ *~
165
+ tags
166
+
167
+ # Emacs
168
+ *~
169
+ \#*\#
170
+ /.emacs.desktop
171
+ /.emacs.desktop.lock
172
+ *.elc
173
+ auto-save-list
174
+ tramp
175
+ .\#*
176
+
177
+ # macOS
178
+ .DS_Store
179
+ .AppleDouble
180
+ .LSOverride
181
+ Icon
182
+ ._*
183
+ .DocumentRevisions-V100
184
+ .fseventsd
185
+ .Spotlight-V100
186
+ .TemporaryItems
187
+ .Trashes
188
+ .VolumeIcon.icns
189
+ .com.apple.timemachine.donotpresent
190
+ .AppleDB
191
+ .AppleDesktop
192
+ Network Trash Folder
193
+ Temporary Items
194
+ .apdisk
195
+
196
+ # Windows
197
+ Thumbs.db
198
+ Thumbs.db:encryptable
199
+ ehthumbs.db
200
+ ehthumbs_vista.db
201
+ *.stackdump
202
+ [Dd]esktop.ini
203
+ $RECYCLE.BIN/
204
+ *.cab
205
+ *.msi
206
+ *.msix
207
+ *.msm
208
+ *.msp
209
+ *.lnk
210
+
211
+ # Linux
212
+ .directory
213
+ .Trash-*
214
+ .nfs*
215
+
216
+ # Project specific
217
+ *.mp3
218
+ *.wav
219
+ *.m4a
220
+ *.ogg
221
+ *.flac
222
+ audio_output/
223
+ temp_audio/
224
+ test_*.mp3
225
+ test_*.wav
226
+
227
+ # Ruff
228
+ .ruff_cache/
229
+
230
+ # Pre-commit
231
+ .pre-commit-config.yaml
232
+
233
+
234
+ # Profiling
235
+ *.prof
236
+ *.lprof
237
+ profile_report.json
238
+ *.pyinstrument
239
+
240
+ # Temporary files
241
+ tmp/
242
+ temp/
243
+ *.tmp
244
+ *.temp
245
+ *.bak
246
+ *.backup
247
+ *.swp
248
+ *.swo
249
+
250
+ # Log files
251
+ logs/
252
+ *.log
253
+
254
+ # Config overrides (keep .env.example)
255
+ .env.local
256
+ .env.*.local
257
+ config.local.yaml
258
+ config.local.yml
259
+
260
+ # Cache directories
261
+ .cache/
262
+ cache/
263
+
264
+ # Test outputs
265
+ test-results/
266
+ test-reports/
267
+ junit.xml
268
+
269
+ # Documentation builds
270
+ docs/_build/
271
+ docs/.doctrees/
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2024 Paul Robello
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.