Implemented basic MPRIS integration.
This commit is contained in:
parent
e845c41ca3
commit
9416ac6737
6 changed files with 160 additions and 40 deletions
13
setup.py
13
setup.py
|
@ -19,7 +19,7 @@ long_description = (this_directory / "README.md").read_text()
|
|||
|
||||
setuptools.setup(
|
||||
name="Wobuzz",
|
||||
version="0.1a2",
|
||||
version="0.1a3",
|
||||
description="An audio player made by The Wobbler",
|
||||
long_description=long_description,
|
||||
long_description_content_type="text/markdown",
|
||||
|
@ -30,11 +30,12 @@ setuptools.setup(
|
|||
packages=setuptools.find_packages(include=["wobuzz", "wobuzz.*"]),
|
||||
package_data={"": ["*.txt", "*.svg"]},
|
||||
install_requires=[
|
||||
"PyQt6",
|
||||
"tinytag",
|
||||
"pydub",
|
||||
"pygame",
|
||||
"wobbl_tools @ git+https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools@9b7e796877781f77f6df93475750c15a0ca51dd9#egg=wobbl_tools"
|
||||
"PyQt6~=6.8.0",
|
||||
"tinytag~=2.1.0",
|
||||
"pydub~=0.25.1",
|
||||
"pygame~=2.6.1",
|
||||
"wobbl_tools @ git+https://teapot.informationsanarchistik.de/Wobbl/wobbl_tools@9b7e796877781f77f6df93475750c15a0ca51dd9#egg=wobbl_tools",
|
||||
"sdbus~=0.14.0"
|
||||
],
|
||||
entry_points={
|
||||
"console_scripts": ["wobuzz=wobuzz.command_line:main"],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue