diff options
author | Lesmiscore <nao20010128@gmail.com> | 2022-08-15 15:43:43 +0900 |
---|---|---|
committer | pukkandan <pukkandan.ytdlp@gmail.com> | 2022-08-15 13:51:35 +0530 |
commit | 460eb9c50e0970fdceb51485c5fe3268574c48e8 (patch) | |
tree | 27756053e0876ad4917970a700b270a70008216a /setup.py | |
parent | 9fd03a16960918187cea826f241620b8c98d34fb (diff) |
[build] Exclude devscripts from installs
Closes #4667
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -28,7 +28,7 @@ REQUIREMENTS = read_file('requirements.txt').splitlines() def packages(): if setuptools_available: - return find_packages(exclude=('youtube_dl', 'youtube_dlc', 'test', 'ytdlp_plugins')) + return find_packages(exclude=('youtube_dl', 'youtube_dlc', 'test', 'ytdlp_plugins', 'devscripts')) return [ 'yt_dlp', 'yt_dlp.extractor', 'yt_dlp.downloader', 'yt_dlp.postprocessor', 'yt_dlp.compat', |