tictacsync 0.6a0__tar.gz → 0.8a0__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 tictacsync might be problematic. Click here for more details.
- {tictacsync-0.6a0/tictacsync.egg-info → tictacsync-0.8a0}/PKG-INFO +1 -1
- {tictacsync-0.6a0 → tictacsync-0.8a0}/setup.py +4 -3
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync/yaltc.py +0 -1
- {tictacsync-0.6a0 → tictacsync-0.8a0/tictacsync.egg-info}/PKG-INFO +1 -1
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync.egg-info/requires.txt +1 -1
- {tictacsync-0.6a0 → tictacsync-0.8a0}/LICENSE +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/README.md +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/setup.cfg +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync/__init__.py +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync/device_scanner.py +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync/entry.py +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync/multi2polywav.py +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync/remergemix.py +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync/timeline.py +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync.egg-info/SOURCES.txt +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync.egg-info/dependency_links.txt +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync.egg-info/entry_points.txt +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync.egg-info/not-zip-safe +0 -0
- {tictacsync-0.6a0 → tictacsync-0.8a0}/tictacsync.egg-info/top_level.txt +0 -0
|
@@ -15,14 +15,15 @@ setup(
|
|
|
15
15
|
},
|
|
16
16
|
install_requires=[
|
|
17
17
|
'sox>=1.4.1',
|
|
18
|
-
'ffmpeg_python>=0.2.0',
|
|
18
|
+
'ffmpeg_python>=0.2.0',
|
|
19
19
|
'loguru>=0.6.0',
|
|
20
20
|
'matplotlib>=3.7.1',
|
|
21
21
|
'numpy>=1.24.3',
|
|
22
22
|
'rich>=10.12.0',
|
|
23
23
|
'lmfit',
|
|
24
|
+
'skimage',
|
|
24
25
|
'scipy>=1.10.1',
|
|
25
|
-
|
|
26
|
+
],
|
|
26
27
|
python_requires='>=3.10',
|
|
27
28
|
entry_points = {
|
|
28
29
|
"console_scripts": [
|
|
@@ -31,7 +32,7 @@ setup(
|
|
|
31
32
|
'multi2polywav = tictacsync.multi2polywav:main',
|
|
32
33
|
]
|
|
33
34
|
},
|
|
34
|
-
version = '0.
|
|
35
|
+
version = '0.8a',
|
|
35
36
|
description = "command for syncing audio video recordings",
|
|
36
37
|
long_description_content_type='text/markdown',
|
|
37
38
|
long_description = long_descr,
|
|
@@ -17,7 +17,6 @@ logging.config.dictConfig({
|
|
|
17
17
|
from datetime import datetime, timezone, timedelta
|
|
18
18
|
from collections import deque
|
|
19
19
|
from loguru import logger
|
|
20
|
-
from sklearn.mixture import GaussianMixture
|
|
21
20
|
from skimage.morphology import closing, erosion, remove_small_objects
|
|
22
21
|
from skimage.measure import regionprops, label
|
|
23
22
|
import ffmpeg, shutil
|
|
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
|