Merge pull request #591 from ritiek/fix-docker-build

Fix missing packages with Docker build
This commit is contained in:
Ritiek Malhotra
2019-07-28 14:53:17 +05:30
committed by GitHub

View File

@@ -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",