diff options
author | Tom-Oliver Heidel <github@tom-oliver.eu> | 2020-10-17 06:04:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-17 06:04:01 +0200 |
commit | f5cf38c7a870b527fa6ce470fafd6d64c9c32183 (patch) | |
tree | ae36a45ac561b604c54f3717fb3ee44f3ec615e7 /setup.py | |
parent | d8f97cc1d34ca02a747d999d884811e0535d4d36 (diff) | |
parent | 6515018dd711dea55fbb316cd3726e40676c2698 (diff) | |
download | hypervideo-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.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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 +) |