quicktools-atom 0.7.0__tar.gz → 0.7.1__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.0 → quicktools_atom-0.7.1}/PKG-INFO +3 -5
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/README.md +2 -4
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/pyproject.toml +1 -1
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/__init__.py +2 -2
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools_atom.egg-info/PKG-INFO +3 -5
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/setup.cfg +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/audiotools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/calculus.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/cli.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/combinatorics.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/doctools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/filetools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/imagetools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/linalg.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/mathtools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/numbertheory.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/pdftools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/presentationtools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/spreadsheettools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/strtools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/unitconverter.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools/videotools.py +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools_atom.egg-info/SOURCES.txt +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools_atom.egg-info/dependency_links.txt +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools_atom.egg-info/entry_points.txt +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools_atom.egg-info/requires.txt +0 -0
- {quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/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.1
|
|
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
|
|
@@ -25,8 +25,7 @@ Requires-Dist: pyannote.audio
|
|
|
25
25
|
|
|
26
26
|
<p align="center">
|
|
27
27
|
|
|
28
|
-
 
|
|
29
|
-
|
|
28
|
+
  
|
|
30
29
|
</p>
|
|
31
30
|
|
|
32
31
|
|
|
@@ -51,8 +50,7 @@ under \*\*AtomDev Studios\*\*.
|
|
|
51
50
|
|
|
52
51
|
<p align="center">
|
|
53
52
|
|
|
54
|
-
 
|
|
55
|
-
|
|
53
|
+
  
|
|
56
54
|
</p>
|
|
57
55
|
|
|
58
56
|
|
|
@@ -2,8 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<p align="center">
|
|
4
4
|
|
|
5
|
-
 
|
|
6
|
-
|
|
5
|
+
  
|
|
7
6
|
</p>
|
|
8
7
|
|
|
9
8
|
|
|
@@ -28,8 +27,7 @@ under \*\*AtomDev Studios\*\*.
|
|
|
28
27
|
|
|
29
28
|
<p align="center">
|
|
30
29
|
|
|
31
|
-
 
|
|
32
|
-
|
|
30
|
+
  
|
|
33
31
|
</p>
|
|
34
32
|
|
|
35
33
|
|
|
@@ -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.1"
|
|
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"
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"""
|
|
2
2
|
<p align="center">
|
|
3
|
-
|
|
3
|
+

|
|
4
4
|
</p>
|
|
5
5
|
|
|
6
6
|
# quicktools
|
|
@@ -13,7 +13,7 @@ under **AtomDev Studios**.
|
|
|
13
13
|
## About Samuel Peprah
|
|
14
14
|
|
|
15
15
|
<p align="center">
|
|
16
|
-
|
|
16
|
+

|
|
17
17
|
</p>
|
|
18
18
|
|
|
19
19
|
Samuel Peprah is a software developer, web application developer, and
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: quicktools-atom
|
|
3
|
-
Version: 0.7.
|
|
3
|
+
Version: 0.7.1
|
|
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
|
|
@@ -25,8 +25,7 @@ Requires-Dist: pyannote.audio
|
|
|
25
25
|
|
|
26
26
|
<p align="center">
|
|
27
27
|
|
|
28
|
-
 
|
|
29
|
-
|
|
28
|
+
  
|
|
30
29
|
</p>
|
|
31
30
|
|
|
32
31
|
|
|
@@ -51,8 +50,7 @@ under \*\*AtomDev Studios\*\*.
|
|
|
51
50
|
|
|
52
51
|
<p align="center">
|
|
53
52
|
|
|
54
|
-
 
|
|
55
|
-
|
|
53
|
+
  
|
|
56
54
|
</p>
|
|
57
55
|
|
|
58
56
|
|
|
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
|
|
File without changes
|
{quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools_atom.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{quicktools_atom-0.7.0 → quicktools_atom-0.7.1}/src/quicktools_atom.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|