aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorTom-Oliver Heidel <github@tom-oliver.eu>2020-10-17 06:04:01 +0200
committerGitHub <noreply@github.com>2020-10-17 06:04:01 +0200
commitf5cf38c7a870b527fa6ce470fafd6d64c9c32183 (patch)
treeae36a45ac561b604c54f3717fb3ee44f3ec615e7 /setup.py
parentd8f97cc1d34ca02a747d999d884811e0535d4d36 (diff)
parent6515018dd711dea55fbb316cd3726e40676c2698 (diff)
downloadhypervideo-pre-f5cf38c7a870b527fa6ce470fafd6d64c9c32183.tar.lz
hypervideo-pre-f5cf38c7a870b527fa6ce470fafd6d64c9c32183.tar.xz
hypervideo-pre-f5cf38c7a870b527fa6ce470fafd6d64c9c32183.zip
Merge pull request #189 from l29ah/dont-install-tests
Don't install tests
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index f5f0bae62..a10ef0a77 100644
--- a/setup.py
+++ b/setup.py
@@ -67,7 +67,7 @@ setup(
long_description=LONG_DESCRIPTION,
# long_description_content_type="text/markdown",
url="https://github.com/blackjack4494/youtube-dlc",
- packages=find_packages(exclude=("youtube_dl",)),
+ packages=find_packages(exclude=("youtube_dl","test",)),
#packages=[
# 'youtube_dlc',
# 'youtube_dlc.extractor', 'youtube_dlc.downloader',
@@ -100,4 +100,4 @@ setup(
cmdclass={'build_lazy_extractors': build_lazy_extractors},
**params
-) \ No newline at end of file
+)