spolyrics 1.3.2__tar.gz → 1.3.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.
- {spolyrics-1.3.2/spolyrics.egg-info → spolyrics-1.3.3}/PKG-INFO +1 -1
- {spolyrics-1.3.2 → spolyrics-1.3.3}/setup.py +2 -2
- {spolyrics-1.3.2 → spolyrics-1.3.3}/spolyrics/__main__.py +1 -1
- {spolyrics-1.3.2 → spolyrics-1.3.3/spolyrics.egg-info}/PKG-INFO +1 -1
- spolyrics-1.3.3/spolyrics.egg-info/entry_points.txt +2 -0
- spolyrics-1.3.2/spolyrics.egg-info/entry_points.txt +0 -2
- {spolyrics-1.3.2 → spolyrics-1.3.3}/LICENSE +0 -0
- {spolyrics-1.3.2 → spolyrics-1.3.3}/README.md +0 -0
- {spolyrics-1.3.2 → spolyrics-1.3.3}/setup.cfg +0 -0
- {spolyrics-1.3.2 → spolyrics-1.3.3}/spolyrics/__init__.py +0 -0
- {spolyrics-1.3.2 → spolyrics-1.3.3}/spolyrics/assets.py +0 -0
- {spolyrics-1.3.2 → spolyrics-1.3.3}/spolyrics.egg-info/SOURCES.txt +0 -0
- {spolyrics-1.3.2 → spolyrics-1.3.3}/spolyrics.egg-info/dependency_links.txt +0 -0
- {spolyrics-1.3.2 → spolyrics-1.3.3}/spolyrics.egg-info/requires.txt +0 -0
- {spolyrics-1.3.2 → spolyrics-1.3.3}/spolyrics.egg-info/top_level.txt +0 -0
|
@@ -2,7 +2,7 @@ from setuptools import setup
|
|
|
2
2
|
|
|
3
3
|
setup(
|
|
4
4
|
name='spolyrics',
|
|
5
|
-
version='1.3.
|
|
5
|
+
version='1.3.3',
|
|
6
6
|
description='A minimalist, borderless, zero-delay synced lyrics miniplayer for Spotify on Windows.',
|
|
7
7
|
long_description=open('README.md', 'r', encoding='utf-8').read(),
|
|
8
8
|
long_description_content_type='text/markdown',
|
|
@@ -10,7 +10,7 @@ setup(
|
|
|
10
10
|
packages=['spolyrics'],
|
|
11
11
|
entry_points={
|
|
12
12
|
'gui_scripts': [
|
|
13
|
-
'spolyrics=spolyrics.__main__:
|
|
13
|
+
'spolyrics=spolyrics.__main__:start_app',
|
|
14
14
|
],
|
|
15
15
|
},
|
|
16
16
|
python_requires='>=3.8',
|
|
@@ -26,7 +26,7 @@ from .assets import ICON_B64
|
|
|
26
26
|
from tkinter import messagebox
|
|
27
27
|
from winsdk.windows.media.control import GlobalSystemMediaTransportControlsSessionManager as MediaManager
|
|
28
28
|
|
|
29
|
-
CURRENT_VERSION = "1.3.
|
|
29
|
+
CURRENT_VERSION = "1.3.3"
|
|
30
30
|
CONFIG_PATH = os.path.join(os.environ.get("APPDATA", ""), "SpoLyrics", "config.json")
|
|
31
31
|
APP_DIR = os.path.join(os.environ.get("APPDATA", ""), "SpoLyrics")
|
|
32
32
|
os.makedirs(APP_DIR, exist_ok=True)
|
|
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
|