2021-06-03 11:43:42 +02:00
|
|
|
#!/usr/bin/env python3
|
2022-06-24 13:06:16 +02:00
|
|
|
|
2014-01-27 06:22:15 +01:00
|
|
|
import os.path
|
2022-07-07 22:53:24 +02:00
|
|
|
import subprocess
|
2012-11-28 18:24:16 +01:00
|
|
|
import sys
|
2022-04-12 00:32:57 +02:00
|
|
|
import warnings
|
2013-01-30 15:31:38 +01:00
|
|
|
|
2021-10-03 22:55:13 +02:00
|
|
|
try:
|
2022-04-12 00:32:57 +02:00
|
|
|
from setuptools import Command, find_packages, setup
|
2021-10-03 22:55:13 +02:00
|
|
|
setuptools_available = True
|
|
|
|
except ImportError:
|
2022-04-12 00:32:57 +02:00
|
|
|
from distutils.core import Command, setup
|
2021-10-03 22:55:13 +02:00
|
|
|
setuptools_available = False
|
2021-01-29 18:45:27 +01:00
|
|
|
|
2022-08-08 21:38:47 +02:00
|
|
|
from devscripts.utils import read_file, read_version
|
2022-04-27 10:15:45 +02:00
|
|
|
|
2022-08-08 21:38:47 +02:00
|
|
|
VERSION = read_version()
|
2021-01-29 18:45:27 +01:00
|
|
|
|
2021-10-23 16:29:52 +02:00
|
|
|
DESCRIPTION = 'A youtube-dl fork with additional features and patches'
|
2021-01-15 19:29:00 +01:00
|
|
|
|
|
|
|
LONG_DESCRIPTION = '\n\n'.join((
|
2021-02-24 19:45:56 +01:00
|
|
|
'Official repository: <https://github.com/yt-dlp/yt-dlp>',
|
2021-05-31 22:33:40 +02:00
|
|
|
'**PS**: Some links in this document will not work since this is a copy of the README.md from Github',
|
2022-08-08 21:38:47 +02:00
|
|
|
read_file('README.md')))
|
2012-03-25 23:48:53 +02:00
|
|
|
|
2022-08-08 21:38:47 +02:00
|
|
|
REQUIREMENTS = read_file('requirements.txt').splitlines()
|
2021-01-29 18:45:27 +01:00
|
|
|
|
2021-10-03 22:55:13 +02:00
|
|
|
|
2022-07-07 22:53:24 +02:00
|
|
|
def packages():
|
|
|
|
if setuptools_available:
|
2022-08-15 08:43:43 +02:00
|
|
|
return find_packages(exclude=('youtube_dl', 'youtube_dlc', 'test', 'ytdlp_plugins', 'devscripts'))
|
2022-07-07 22:53:24 +02:00
|
|
|
|
|
|
|
return [
|
|
|
|
'yt_dlp', 'yt_dlp.extractor', 'yt_dlp.downloader', 'yt_dlp.postprocessor', 'yt_dlp.compat',
|
|
|
|
]
|
|
|
|
|
|
|
|
|
|
|
|
def py2exe_params():
|
2022-04-17 19:18:50 +02:00
|
|
|
import py2exe # noqa: F401
|
2022-07-07 22:53:24 +02:00
|
|
|
|
2021-10-03 22:55:13 +02:00
|
|
|
warnings.warn(
|
2021-10-21 14:56:56 +02:00
|
|
|
'py2exe builds do not support pycryptodomex and needs VC++14 to run. '
|
2021-10-03 22:55:13 +02:00
|
|
|
'The recommended way is to use "pyinst.py" to build using pyinstaller')
|
2022-07-07 22:53:24 +02:00
|
|
|
|
|
|
|
return {
|
2021-10-03 22:55:13 +02:00
|
|
|
'console': [{
|
|
|
|
'script': './yt_dlp/__main__.py',
|
|
|
|
'dest_base': 'yt-dlp',
|
2022-04-27 10:15:45 +02:00
|
|
|
'version': VERSION,
|
2021-10-03 22:55:13 +02:00
|
|
|
'description': DESCRIPTION,
|
|
|
|
'comments': LONG_DESCRIPTION.split('\n')[0],
|
|
|
|
'product_name': 'yt-dlp',
|
2022-04-27 10:15:45 +02:00
|
|
|
'product_version': VERSION,
|
2022-07-07 22:53:24 +02:00
|
|
|
'icon_resources': [(1, 'devscripts/logo.ico')],
|
2021-10-03 22:55:13 +02:00
|
|
|
}],
|
|
|
|
'options': {
|
|
|
|
'py2exe': {
|
|
|
|
'bundle_files': 0,
|
|
|
|
'compressed': 1,
|
|
|
|
'optimize': 2,
|
|
|
|
'dist_dir': './dist',
|
|
|
|
'excludes': ['Crypto', 'Cryptodome'], # py2exe cannot import Crypto
|
|
|
|
'dll_excludes': ['w9xpopen.exe', 'crypt32.dll'],
|
2022-04-26 11:41:01 +02:00
|
|
|
# Modules that are only imported dynamically must be added here
|
|
|
|
'includes': ['yt_dlp.compat._legacy'],
|
2021-10-03 22:55:13 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
'zipfile': None
|
|
|
|
}
|
|
|
|
|
2022-07-07 22:53:24 +02:00
|
|
|
|
|
|
|
def build_params():
|
2021-10-03 22:55:13 +02:00
|
|
|
files_spec = [
|
|
|
|
('share/bash-completion/completions', ['completions/bash/yt-dlp']),
|
|
|
|
('share/zsh/site-functions', ['completions/zsh/_yt-dlp']),
|
|
|
|
('share/fish/vendor_completions.d', ['completions/fish/yt-dlp.fish']),
|
|
|
|
('share/doc/yt_dlp', ['README.txt']),
|
|
|
|
('share/man/man1', ['yt-dlp.1'])
|
|
|
|
]
|
|
|
|
data_files = []
|
|
|
|
for dirname, files in files_spec:
|
|
|
|
resfiles = []
|
|
|
|
for fn in files:
|
|
|
|
if not os.path.exists(fn):
|
2022-07-07 22:53:24 +02:00
|
|
|
warnings.warn(f'Skipping file {fn} since it is not present. Try running " make pypi-files " first')
|
2021-10-03 22:55:13 +02:00
|
|
|
else:
|
|
|
|
resfiles.append(fn)
|
|
|
|
data_files.append((dirname, resfiles))
|
|
|
|
|
2022-07-07 22:53:24 +02:00
|
|
|
params = {'data_files': data_files}
|
2021-10-03 22:55:13 +02:00
|
|
|
|
|
|
|
if setuptools_available:
|
|
|
|
params['entry_points'] = {'console_scripts': ['yt-dlp = yt_dlp:main']}
|
|
|
|
else:
|
|
|
|
params['scripts'] = ['yt-dlp']
|
2022-07-07 22:53:24 +02:00
|
|
|
return params
|
2021-01-28 20:32:37 +01:00
|
|
|
|
2012-12-07 11:39:08 +01:00
|
|
|
|
2016-03-06 19:36:39 +01:00
|
|
|
class build_lazy_extractors(Command):
|
2016-06-24 21:50:12 +02:00
|
|
|
description = 'Build the extractor lazy loading module'
|
2016-03-06 19:36:39 +01:00
|
|
|
user_options = []
|
|
|
|
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run(self):
|
2022-07-07 22:53:24 +02:00
|
|
|
if self.dry_run:
|
|
|
|
print('Skipping build of lazy extractors in dry run mode')
|
|
|
|
return
|
2022-08-08 21:38:47 +02:00
|
|
|
subprocess.run([sys.executable, 'devscripts/make_lazy_extractors.py'])
|
2021-10-03 22:55:13 +02:00
|
|
|
|
2021-01-28 20:32:37 +01:00
|
|
|
|
2022-07-07 22:53:24 +02:00
|
|
|
params = py2exe_params() if sys.argv[1:2] == ['py2exe'] else build_params()
|
2012-11-29 16:51:55 +01:00
|
|
|
setup(
|
2021-04-28 16:29:40 +02:00
|
|
|
name='yt-dlp',
|
2022-04-27 10:15:45 +02:00
|
|
|
version=VERSION,
|
2021-04-28 16:29:40 +02:00
|
|
|
maintainer='pukkandan',
|
|
|
|
maintainer_email='pukkandan.ytdlp@gmail.com',
|
2016-06-24 21:50:12 +02:00
|
|
|
description=DESCRIPTION,
|
|
|
|
long_description=LONG_DESCRIPTION,
|
2021-04-28 16:29:40 +02:00
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
url='https://github.com/yt-dlp/yt-dlp',
|
2022-07-07 22:53:24 +02:00
|
|
|
packages=packages(),
|
2021-01-29 18:45:27 +01:00
|
|
|
install_requires=REQUIREMENTS,
|
2022-07-18 02:20:54 +02:00
|
|
|
python_requires='>=3.7',
|
2021-01-15 19:29:00 +01:00
|
|
|
project_urls={
|
2022-04-29 03:19:57 +02:00
|
|
|
'Documentation': 'https://github.com/yt-dlp/yt-dlp#readme',
|
2021-02-24 19:45:56 +01:00
|
|
|
'Source': 'https://github.com/yt-dlp/yt-dlp',
|
|
|
|
'Tracker': 'https://github.com/yt-dlp/yt-dlp/issues',
|
2021-10-09 02:23:15 +02:00
|
|
|
'Funding': 'https://github.com/yt-dlp/yt-dlp/blob/master/Collaborators.md#collaborators',
|
2021-01-15 19:29:00 +01:00
|
|
|
},
|
2013-06-26 05:54:55 +02:00
|
|
|
classifiers=[
|
2021-04-28 16:29:40 +02:00
|
|
|
'Topic :: Multimedia :: Video',
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
2022-06-10 21:03:54 +02:00
|
|
|
'Programming Language :: Python :: 3.9',
|
|
|
|
'Programming Language :: Python :: 3.10',
|
|
|
|
'Programming Language :: Python :: 3.11',
|
2021-04-28 16:29:40 +02:00
|
|
|
'Programming Language :: Python :: Implementation',
|
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
|
|
'License :: Public Domain',
|
|
|
|
'Operating System :: OS Independent',
|
2012-12-07 11:39:08 +01:00
|
|
|
],
|
2021-02-25 15:49:57 +01:00
|
|
|
cmdclass={'build_lazy_extractors': build_lazy_extractors},
|
2012-12-07 12:04:52 +01:00
|
|
|
**params
|
2020-10-14 04:22:46 +02:00
|
|
|
)
|