From d2ebc0feede87c1a22505f04f4f1736068ffdc6c Mon Sep 17 00:00:00 2001 From: 7x11x13 Date: Thu, 18 Nov 2021 00:58:12 -0500 Subject: [PATCH] Include default config file --- MANIFEST.in | 1 + scdl/__init__.py | 2 +- setup.py | 1 + 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/MANIFEST.in b/MANIFEST.in index 7d43f80..7d4e26a 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,3 @@ include *.md include LICENSE +include scdl/scdl.cfg \ No newline at end of file diff --git a/scdl/__init__.py b/scdl/__init__.py index e4c9c95..3713109 100644 --- a/scdl/__init__.py +++ b/scdl/__init__.py @@ -2,4 +2,4 @@ """Python Soundcloud Music Downloader.""" -__version__ = "v2.2.2" \ No newline at end of file +__version__ = "v2.2.3" \ No newline at end of file diff --git a/setup.py b/setup.py index 703cc72..67f43de 100755 --- a/setup.py +++ b/setup.py @@ -15,6 +15,7 @@ setup( name="scdl", version=scdl.__version__, packages=find_packages(), + include_package_data=True, author="FlyinGrub", author_email="flyinggrub@gmail.com", description="Download Music from Souncloud",