From 80bbf800909e66a7e1ff9fcfe25c6f6539db72cb Mon Sep 17 00:00:00 2001 From: Ritiek Malhotra Date: Sun, 28 Jul 2019 14:41:03 +0530 Subject: [PATCH] Fix missing packages with Docker build --- setup.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 38b96bd..e36db14 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,11 @@ setup( name="spotdl", # Tests are included automatically: # https://docs.python.org/3.6/distutils/sourcedist.html#specifying-the-files-to-distribute - packages=["spotdl"], + packages=[ + "spotdl", + "spotdl.lyrics", + "spotdl.lyrics.providers", + ], version=spotdl.__version__, install_requires=[ "pathlib >= 1.0.1",