2021-06-03 11:43:42 +02:00
|
|
|
#!/usr/bin/env python3
|
2016-10-02 13:39:18 +02:00
|
|
|
# coding: utf-8
|
2014-01-27 06:22:15 +01:00
|
|
|
import os.path
|
|
|
|
import warnings
|
2012-11-28 18:24:16 +01:00
|
|
|
import sys
|
2013-01-30 15:31:38 +01:00
|
|
|
|
2021-10-03 22:55:13 +02: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 18:45:27 +01:00
|
|
|
|
2021-02-24 19:45:56 +01:00
|
|
|
# Get the version from yt_dlp/version.py without importing the package
|
2021-05-31 22:33:40 +02:00
|
|
|
exec(compile(open('yt_dlp/version.py').read(), 'yt_dlp/version.py', 'exec'))
|
2016-06-24 21:50:12 +02:00
|
|
|
|
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-03-08 21:09:47 +01:00
|
|
|
open('README.md', encoding='utf-8').read()))
|
2012-03-25 23:48:53 +02:00
|
|
|
|
2022-03-08 21:09:47 +01:00
|
|
|
REQUIREMENTS = open('requirements.txt', encoding='utf-8').read().splitlines()
|
2021-01-29 18:45:27 +01:00
|
|
|
|
2021-10-03 22:55:13 +02:00
|
|
|
|
2021-05-31 22:33:40 +02:00
|
|
|
if sys.argv[1:2] == ['py2exe']:
|
2021-10-03 22:55:13 +02:00
|
|
|
import py2exe
|
|
|
|
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')
|
|
|
|
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 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):
|
2021-05-31 22:33:40 +02:00
|
|
|
spawn([sys.executable, 'devscripts/make_lazy_extractors.py', 'yt_dlp/extractor/lazy_extractors.py'],
|
|
|
|
dry_run=self.dry_run)
|
2016-03-06 19:36:39 +01:00
|
|
|
|
2021-01-28 20:32:37 +01:00
|
|
|
|
2021-10-03 22:55:13 +02: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 20:32:37 +01:00
|
|
|
|
2012-11-29 16:51:55 +01:00
|
|
|
setup(
|
2021-04-28 16:29:40 +02:00
|
|
|
name='yt-dlp',
|
2013-06-26 05:54:55 +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',
|
2021-01-28 20:32:37 +01:00
|
|
|
packages=packages,
|
2021-01-29 18:45:27 +01:00
|
|
|
install_requires=REQUIREMENTS,
|
2021-01-15 19:29:00 +01:00
|
|
|
project_urls={
|
2021-02-24 20:46:57 +01:00
|
|
|
'Documentation': 'https://yt-dlp.readthedocs.io',
|
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.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 11:39:08 +01:00
|
|
|
],
|
2021-06-05 21:14:34 +02:00
|
|
|
python_requires='>=3.6',
|
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
|
|
|
)
|