3 # Allow execution from anywhere
7 sys
.path
.insert(0, os
.path
.dirname(os
.path
.abspath(__file__
)))
13 from setuptools
import Command
, find_packages
, setup
14 setuptools_available
= True
16 from distutils
.core
import Command
, setup
17 setuptools_available
= False
19 from devscripts
.utils
import read_file
, read_version
21 VERSION
= read_version()
23 DESCRIPTION
= 'A youtube-dl fork with additional features and patches'
25 LONG_DESCRIPTION
= '\n\n'.join((
26 'Official repository: <https://github.com/yt-dlp/yt-dlp>',
27 '**PS**: Some links in this document will not work since this is a copy of the README.md from Github',
28 read_file('README.md')))
30 REQUIREMENTS
= read_file('requirements.txt').splitlines()
34 if setuptools_available
:
35 return find_packages(exclude
=('youtube_dl', 'youtube_dlc', 'test', 'ytdlp_plugins', 'devscripts'))
38 'yt_dlp', 'yt_dlp.extractor', 'yt_dlp.downloader', 'yt_dlp.postprocessor', 'yt_dlp.compat',
44 'py2exe builds do not support pycryptodomex and needs VC++14 to run. '
45 'It is recommended to run "pyinst.py" to build using pyinstaller instead')
49 'script': './yt_dlp/__main__.py',
50 'dest_base': 'yt-dlp',
51 'icon_resources': [(1, 'devscripts/logo.ico')],
55 'description': DESCRIPTION
,
56 'comments': LONG_DESCRIPTION
.split('\n')[0],
57 'product_name': 'yt-dlp',
58 'product_version': VERSION
,
65 'excludes': ['Crypto', 'Cryptodome'], # py2exe cannot import Crypto
66 'dll_excludes': ['w9xpopen.exe', 'crypt32.dll'],
67 # Modules that are only imported dynamically must be added here
68 'includes': ['yt_dlp.compat._legacy'],
76 ('share/bash-completion/completions', ['completions/bash/yt-dlp']),
77 ('share/zsh/site-functions', ['completions/zsh/_yt-dlp']),
78 ('share/fish/vendor_completions.d', ['completions/fish/yt-dlp.fish']),
79 ('share/doc/yt_dlp', ['README.txt']),
80 ('share/man/man1', ['yt-dlp.1'])
83 for dirname
, files
in files_spec
:
86 if not os
.path
.exists(fn
):
87 warnings
.warn(f
'Skipping file {fn} since it is not present. Try running " make pypi-files " first')
90 data_files
.append((dirname
, resfiles
))
92 params
= {'data_files': data_files
}
94 if setuptools_available
:
95 params
['entry_points'] = {
96 'console_scripts': ['yt-dlp = yt_dlp:main'],
97 'pyinstaller40': ['hook-dirs = yt_dlp.__pyinstaller:get_hook_dirs'],
100 params
['scripts'] = ['yt-dlp']
104 class build_lazy_extractors(Command
):
105 description
= 'Build the extractor lazy loading module'
108 def initialize_options(self
):
111 def finalize_options(self
):
116 print('Skipping build of lazy extractors in dry run mode')
118 subprocess
.run([sys
.executable
, 'devscripts/make_lazy_extractors.py'])
122 if sys
.argv
[1:2] == ['py2exe']:
123 params
= py2exe_params()
125 from py2exe
import freeze
127 import py2exe
# noqa: F401
128 warnings
.warn('You are using an outdated version of py2exe. Support for this version will be removed in the future')
129 params
['console'][0].update(params
.pop('version_info'))
130 params
['options'] = {'py2exe': params
.pop('options')}
132 return freeze(**params
)
134 params
= build_params()
139 maintainer
='pukkandan',
140 maintainer_email
='pukkandan.ytdlp@gmail.com',
141 description
=DESCRIPTION
,
142 long_description
=LONG_DESCRIPTION
,
143 long_description_content_type
='text/markdown',
144 url
='https://github.com/yt-dlp/yt-dlp',
146 install_requires
=REQUIREMENTS
,
147 python_requires
='>=3.7',
149 'Documentation': 'https://github.com/yt-dlp/yt-dlp#readme',
150 'Source': 'https://github.com/yt-dlp/yt-dlp',
151 'Tracker': 'https://github.com/yt-dlp/yt-dlp/issues',
152 'Funding': 'https://github.com/yt-dlp/yt-dlp/blob/master/Collaborators.md#collaborators',
155 'Topic :: Multimedia :: Video',
156 'Development Status :: 5 - Production/Stable',
157 'Environment :: Console',
158 'Programming Language :: Python',
159 'Programming Language :: Python :: 3.7',
160 'Programming Language :: Python :: 3.8',
161 'Programming Language :: Python :: 3.9',
162 'Programming Language :: Python :: 3.10',
163 'Programming Language :: Python :: 3.11',
164 'Programming Language :: Python :: Implementation',
165 'Programming Language :: Python :: Implementation :: CPython',
166 'Programming Language :: Python :: Implementation :: PyPy',
167 'License :: Public Domain',
168 'Operating System :: OS Independent',
170 cmdclass
={'build_lazy_extractors': build_lazy_extractors
},