Merge pull request #189 from l29ah/dont-install-tests

Don't install tests
This commit is contained in:
Tom-Oliver Heidel 2020-10-17 06:04:01 +02:00 committed by GitHub
commit f5cf38c7a8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -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
)
)