2021-06-03 09:43:42 +00:00
|
|
|
#!/usr/bin/env python3
|
2016-10-02 11:39:18 +00:00
|
|
|
# coding: utf-8
|
2014-01-27 05:22:15 +00:00
|
|
|
import os.path
|
|
|
|
import warnings
|
2012-11-28 17:24:16 +00:00
|
|
|
import sys
|
2013-01-30 14:31:38 +00:00
|
|
|
|
2021-10-03 20:55:13 +00:00
|
|
|
try:
|
|
|
|
from setuptools import setup, Command, find_packages
|
|
|
|
setuptools_available = True
|
|
|
|
except ImportError:
|
|
|
|
from distutils.core import setup, Command
|
|
|
|
setuptools_available = False
|
|
|
|
from distutils.spawn import spawn
|
2021-01-29 17:45:27 +00:00
|
|
|
|
2021-02-24 18:45:56 +00:00
|
|
|
# Get the version from yt_dlp/version.py without importing the package
|
2021-05-31 20:33:40 +00:00
|
|
|
exec(compile(open('yt_dlp/version.py').read(), 'yt_dlp/version.py', 'exec'))
|
2016-06-24 19:50:12 +00:00
|
|
|
|
2021-01-29 17:45:27 +00:00
|
|
|
|
2021-10-23 14:29:52 +00:00
|
|
|
DESCRIPTION = 'A youtube-dl fork with additional features and patches'
|
2021-01-15 18:29:00 +00:00
|
|
|
|
|
|
|
LONG_DESCRIPTION = '\n\n'.join((
|
2021-02-24 18:45:56 +00:00
|
|
|
'Official repository: <https://github.com/yt-dlp/yt-dlp>',
|
2021-05-31 20:33:40 +00:00
|
|
|
'**PS**: Some links in this document will not work since this is a copy of the README.md from Github',
|
2021-04-28 14:29:40 +00:00
|
|
|
open('README.md', 'r', encoding='utf-8').read()))
|
2012-03-25 21:48:53 +00:00
|
|
|
|
2021-10-06 01:04:10 +00:00
|
|
|
REQUIREMENTS = ['mutagen', 'pycryptodomex', 'websockets']
|
2021-01-29 17:45:27 +00:00
|
|
|
|
2021-10-03 20:55:13 +00:00
|
|
|
|
2021-05-31 20:33:40 +00:00
|
|
|
if sys.argv[1:2] == ['py2exe']:
|
2021-10-03 20:55:13 +00:00
|
|
|
import py2exe
|
|
|
|
warnings.warn(
|
2021-10-21 12:56:56 +00:00
|
|
|
'py2exe builds do not support pycryptodomex and needs VC++14 to run. '
|
2021-10-03 20:55:13 +00:00
|
|
|
'The recommended way is to use "pyinst.py" to build using pyinstaller')
|
|
|
|
params = {
|
|
|
|
'console': [{
|
|
|
|
'script': './yt_dlp/__main__.py',
|
|
|
|
'dest_base': 'yt-dlp',
|
|
|
|
'version': __version__,
|
|
|
|
'description': DESCRIPTION,
|
|
|
|
'comments': LONG_DESCRIPTION.split('\n')[0],
|
|
|
|
'product_name': 'yt-dlp',
|
|
|
|
'product_version': __version__,
|
|
|
|
}],
|
|
|
|
'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'],
|
|
|
|
}
|
|
|
|
},
|
|
|
|
'zipfile': None
|
|
|
|
}
|
|
|
|
|
|
|
|
else:
|
|
|
|
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'])
|
|
|
|
]
|
|
|
|
root = os.path.dirname(os.path.abspath(__file__))
|
|
|
|
data_files = []
|
|
|
|
for dirname, files in files_spec:
|
|
|
|
resfiles = []
|
|
|
|
for fn in files:
|
|
|
|
if not os.path.exists(fn):
|
|
|
|
warnings.warn('Skipping file %s since it is not present. Try running `make pypi-files` first' % fn)
|
|
|
|
else:
|
|
|
|
resfiles.append(fn)
|
|
|
|
data_files.append((dirname, resfiles))
|
|
|
|
|
|
|
|
params = {
|
|
|
|
'data_files': data_files,
|
|
|
|
}
|
|
|
|
|
|
|
|
if setuptools_available:
|
|
|
|
params['entry_points'] = {'console_scripts': ['yt-dlp = yt_dlp:main']}
|
|
|
|
else:
|
|
|
|
params['scripts'] = ['yt-dlp']
|
2021-01-28 19:32:37 +00:00
|
|
|
|
2012-12-07 10:39:08 +00:00
|
|
|
|
2016-03-06 18:36:39 +00:00
|
|
|
class build_lazy_extractors(Command):
|
2016-06-24 19:50:12 +00:00
|
|
|
description = 'Build the extractor lazy loading module'
|
2016-03-06 18:36:39 +00:00
|
|
|
user_options = []
|
|
|
|
|
|
|
|
def initialize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def finalize_options(self):
|
|
|
|
pass
|
|
|
|
|
|
|
|
def run(self):
|
2021-05-31 20:33:40 +00:00
|
|
|
spawn([sys.executable, 'devscripts/make_lazy_extractors.py', 'yt_dlp/extractor/lazy_extractors.py'],
|
|
|
|
dry_run=self.dry_run)
|
2016-03-06 18:36:39 +00:00
|
|
|
|
2021-01-28 19:32:37 +00:00
|
|
|
|
2021-10-03 20:55:13 +00:00
|
|
|
if setuptools_available:
|
|
|
|
packages = find_packages(exclude=('youtube_dl', 'youtube_dlc', 'test', 'ytdlp_plugins'))
|
|
|
|
else:
|
|
|
|
packages = ['yt_dlp', 'yt_dlp.downloader', 'yt_dlp.extractor', 'yt_dlp.postprocessor']
|
|
|
|
|
2021-01-28 19:32:37 +00:00
|
|
|
|
2012-11-29 15:51:55 +00:00
|
|
|
setup(
|
2021-04-28 14:29:40 +00:00
|
|
|
name='yt-dlp',
|
2013-06-26 03:54:55 +00:00
|
|
|
version=__version__,
|
2021-04-28 14:29:40 +00:00
|
|
|
maintainer='pukkandan',
|
|
|
|
maintainer_email='pukkandan.ytdlp@gmail.com',
|
2016-06-24 19:50:12 +00:00
|
|
|
description=DESCRIPTION,
|
|
|
|
long_description=LONG_DESCRIPTION,
|
2021-04-28 14:29:40 +00:00
|
|
|
long_description_content_type='text/markdown',
|
|
|
|
url='https://github.com/yt-dlp/yt-dlp',
|
2021-01-28 19:32:37 +00:00
|
|
|
packages=packages,
|
2021-01-29 17:45:27 +00:00
|
|
|
install_requires=REQUIREMENTS,
|
2021-01-15 18:29:00 +00:00
|
|
|
project_urls={
|
2021-02-24 19:46:57 +00:00
|
|
|
'Documentation': 'https://yt-dlp.readthedocs.io',
|
2021-02-24 18:45:56 +00:00
|
|
|
'Source': 'https://github.com/yt-dlp/yt-dlp',
|
|
|
|
'Tracker': 'https://github.com/yt-dlp/yt-dlp/issues',
|
2021-10-09 00:23:15 +00:00
|
|
|
'Funding': 'https://github.com/yt-dlp/yt-dlp/blob/master/Collaborators.md#collaborators',
|
2021-01-15 18:29:00 +00:00
|
|
|
},
|
2013-06-26 03:54:55 +00:00
|
|
|
classifiers=[
|
2021-04-28 14:29:40 +00:00
|
|
|
'Topic :: Multimedia :: Video',
|
|
|
|
'Development Status :: 5 - Production/Stable',
|
|
|
|
'Environment :: Console',
|
|
|
|
'Programming Language :: Python',
|
|
|
|
'Programming Language :: Python :: 3.6',
|
|
|
|
'Programming Language :: Python :: 3.7',
|
|
|
|
'Programming Language :: Python :: 3.8',
|
|
|
|
'Programming Language :: Python :: Implementation',
|
|
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
|
|
'License :: Public Domain',
|
|
|
|
'Operating System :: OS Independent',
|
2012-12-07 10:39:08 +00:00
|
|
|
],
|
2021-06-05 19:14:34 +00:00
|
|
|
python_requires='>=3.6',
|
2021-02-25 14:49:57 +00:00
|
|
|
|
|
|
|
cmdclass={'build_lazy_extractors': build_lazy_extractors},
|
2012-12-07 11:04:52 +00:00
|
|
|
**params
|
2020-10-14 02:22:46 +00:00
|
|
|
)
|