quicktools-atom 0.7.2__tar.gz → 0.7.3__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.
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/PKG-INFO +2 -6
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/README.md +1 -1
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/pyproject.toml +2 -6
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/__init__.py +1 -1
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/presentationtools.py +8 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools_atom.egg-info/PKG-INFO +2 -6
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools_atom.egg-info/requires.txt +0 -5
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/setup.cfg +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/audiotools.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/calculus.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/cli.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/combinatorics.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/doctools.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/filetools.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/imagetools.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/linalg.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/mathtools.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/numbertheory.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/pdftools.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/spreadsheettools.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/strtools.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/unitconverter.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools/videotools.py +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools_atom.egg-info/SOURCES.txt +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools_atom.egg-info/dependency_links.txt +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools_atom.egg-info/entry_points.txt +0 -0
- {quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools_atom.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quicktools-atom
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.3
|
|
4
4
|
Summary: Math, text, presentation, audio, video, and file utilities by AtomDev Studios
|
|
5
5
|
Author-email: Samuel Peprah <windscribe.samuel@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/Samuel-Peprah-cmd/quicktools
|
|
@@ -20,10 +20,6 @@ Requires-Dist: python-pptx
|
|
|
20
20
|
Requires-Dist: faster-whisper
|
|
21
21
|
Requires-Dist: av
|
|
22
22
|
Requires-Dist: pyannote.audio
|
|
23
|
-
Requires-Dist: torch
|
|
24
|
-
Provides-Extra: diarization
|
|
25
|
-
Requires-Dist: pyannote.audio; extra == "diarization"
|
|
26
|
-
Requires-Dist: torch; extra == "diarization"
|
|
27
23
|
|
|
28
24
|
"""
|
|
29
25
|
|
|
@@ -209,5 +205,5 @@ PostgreSQL • SQLite • Git • GitHub • Cloudflare • Docker
|
|
|
209
205
|
|
|
210
206
|
|
|
211
207
|
|
|
212
|
-
\_\_version\_\_ = "0.7.
|
|
208
|
+
\_\_version\_\_ = "0.7.3"
|
|
213
209
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "quicktools-atom"
|
|
7
|
-
version = "0.7.
|
|
7
|
+
version = "0.7.3"
|
|
8
8
|
description = "Math, text, presentation, audio, video, and file utilities by AtomDev Studios"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.9"
|
|
@@ -24,7 +24,6 @@ dependencies = [
|
|
|
24
24
|
"faster-whisper",
|
|
25
25
|
"av",
|
|
26
26
|
"pyannote.audio",
|
|
27
|
-
"torch",
|
|
28
27
|
]
|
|
29
28
|
|
|
30
29
|
[project.urls]
|
|
@@ -36,7 +35,4 @@ Documentation = "https://samuel-peprah-cmd.github.io/quicktools/"
|
|
|
36
35
|
quicktools = "quicktools.cli:main"
|
|
37
36
|
|
|
38
37
|
[tool.setuptools.packages.find]
|
|
39
|
-
where = ["src"]
|
|
40
|
-
|
|
41
|
-
[project.optional-dependencies]
|
|
42
|
-
diarization = ["pyannote.audio", "torch"]
|
|
38
|
+
where = ["src"]
|
|
@@ -25,6 +25,14 @@ THEMES = [
|
|
|
25
25
|
{"name": "Soft Light", "background": RGBColor(0xF5, 0xF5, 0xF0), "title": RGBColor(0x22, 0x22, 0x22), "accent": RGBColor(0x44, 0x44, 0x44)},
|
|
26
26
|
]
|
|
27
27
|
|
|
28
|
+
class Theme:
|
|
29
|
+
"""Pre-defined theme constants for easy IDE auto-completion."""
|
|
30
|
+
OCEAN_BLUE = "Ocean Blue"
|
|
31
|
+
SUNSET_ORANGE = "Sunset Orange"
|
|
32
|
+
FOREST_GREEN = "Forest Green"
|
|
33
|
+
MONOCHROME = "Monochrome"
|
|
34
|
+
SOFT_LIGHT = "Soft Light"
|
|
35
|
+
|
|
28
36
|
|
|
29
37
|
def _pick_theme(theme_name: str | None = None) -> dict:
|
|
30
38
|
"""Return a theme dict by name, or a random one if no name is given."""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quicktools-atom
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.3
|
|
4
4
|
Summary: Math, text, presentation, audio, video, and file utilities by AtomDev Studios
|
|
5
5
|
Author-email: Samuel Peprah <windscribe.samuel@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/Samuel-Peprah-cmd/quicktools
|
|
@@ -20,10 +20,6 @@ Requires-Dist: python-pptx
|
|
|
20
20
|
Requires-Dist: faster-whisper
|
|
21
21
|
Requires-Dist: av
|
|
22
22
|
Requires-Dist: pyannote.audio
|
|
23
|
-
Requires-Dist: torch
|
|
24
|
-
Provides-Extra: diarization
|
|
25
|
-
Requires-Dist: pyannote.audio; extra == "diarization"
|
|
26
|
-
Requires-Dist: torch; extra == "diarization"
|
|
27
23
|
|
|
28
24
|
"""
|
|
29
25
|
|
|
@@ -209,5 +205,5 @@ PostgreSQL • SQLite • Git • GitHub • Cloudflare • Docker
|
|
|
209
205
|
|
|
210
206
|
|
|
211
207
|
|
|
212
|
-
\_\_version\_\_ = "0.7.
|
|
208
|
+
\_\_version\_\_ = "0.7.3"
|
|
213
209
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools_atom.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{quicktools_atom-0.7.2 → quicktools_atom-0.7.3}/src/quicktools_atom.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|