fix building wheel
authorMarcel van der Veldt <m.vanderveldt@outlook.com>
Thu, 9 Mar 2023 14:57:48 +0000 (15:57 +0100)
committerMarcel van der Veldt <m.vanderveldt@outlook.com>
Thu, 9 Mar 2023 14:57:48 +0000 (15:57 +0100)
MANIFEST.in [deleted file]
music_assistant/server/providers/airplay/bin/__init__.py [new file with mode: 0644]
music_assistant/server/providers/spotify/librespot/__init__.py [new file with mode: 0644]
music_assistant/server/providers/spotify/librespot/freebsd/__init__.py [new file with mode: 0644]
music_assistant/server/providers/spotify/librespot/linux/__init__.py [new file with mode: 0644]
music_assistant/server/providers/spotify/librespot/osx/__init__.py [new file with mode: 0644]
music_assistant/server/providers/spotify/librespot/windows/__init__.py [new file with mode: 0644]
pyproject.toml

diff --git a/MANIFEST.in b/MANIFEST.in
deleted file mode 100644 (file)
index a65d1e2..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-include *.txt
-include README.rst
-include LICENSE.md
-graft music_assistant
-recursive-exclude * *.py[co]
-recursive-exclude * *.DS_Store
diff --git a/music_assistant/server/providers/airplay/bin/__init__.py b/music_assistant/server/providers/airplay/bin/__init__.py
new file mode 100644 (file)
index 0000000..9253875
--- /dev/null
@@ -0,0 +1 @@
+"""Music Assistant: The music library manager in python."""
diff --git a/music_assistant/server/providers/spotify/librespot/__init__.py b/music_assistant/server/providers/spotify/librespot/__init__.py
new file mode 100644 (file)
index 0000000..9253875
--- /dev/null
@@ -0,0 +1 @@
+"""Music Assistant: The music library manager in python."""
diff --git a/music_assistant/server/providers/spotify/librespot/freebsd/__init__.py b/music_assistant/server/providers/spotify/librespot/freebsd/__init__.py
new file mode 100644 (file)
index 0000000..9253875
--- /dev/null
@@ -0,0 +1 @@
+"""Music Assistant: The music library manager in python."""
diff --git a/music_assistant/server/providers/spotify/librespot/linux/__init__.py b/music_assistant/server/providers/spotify/librespot/linux/__init__.py
new file mode 100644 (file)
index 0000000..9253875
--- /dev/null
@@ -0,0 +1 @@
+"""Music Assistant: The music library manager in python."""
diff --git a/music_assistant/server/providers/spotify/librespot/osx/__init__.py b/music_assistant/server/providers/spotify/librespot/osx/__init__.py
new file mode 100644 (file)
index 0000000..9253875
--- /dev/null
@@ -0,0 +1 @@
+"""Music Assistant: The music library manager in python."""
diff --git a/music_assistant/server/providers/spotify/librespot/windows/__init__.py b/music_assistant/server/providers/spotify/librespot/windows/__init__.py
new file mode 100644 (file)
index 0000000..9253875
--- /dev/null
@@ -0,0 +1 @@
+"""Music Assistant: The music library manager in python."""
index 1d7d31b03bc4aabb9ee2e2d9bfe8c598e888c156..1e02493f571074e5de0e8468362caf7bce1a4a03 100644 (file)
@@ -99,10 +99,10 @@ zip-safe  = false
 include-package-data = true
 
 [tool.setuptools.package-data]
-music_assistant = ["py.typed"]
+"*" = ["*.*"]
 
 [tool.setuptools.packages.find]
-include = ["music_assistant*"]
+where = ["."]
 
 [tool.ruff]
 fix = true