diff options
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 15 |
1 files changed, 5 insertions, 10 deletions
@@ -23,7 +23,7 @@ LONG_DESCRIPTION = '\n\n'.join(( '**PS**: Some links in this document will not work since this is a copy of the README.md from Github', open('README.md', encoding='utf-8').read())) -REQUIREMENTS = open('requirements.txt', encoding='utf-8').read().splitlines() +REQUIREMENTS = ['mutagen', 'pycryptodome', 'websockets'] if sys.argv[1:2] == ['py2exe']: @@ -107,20 +107,15 @@ else: setup( name='yt-dlp', version=__version__, - maintainer='pukkandan', - maintainer_email='pukkandan.ytdlp@gmail.com', + maintainer='Jesús E..', + maintainer_email='heckyel@hyperbola.info', + license='CC0-1.0', description=DESCRIPTION, long_description=LONG_DESCRIPTION, long_description_content_type='text/markdown', - url='https://github.com/yt-dlp/yt-dlp', + url='https://git.conocimientoslibres.ga/software/hypervideo.git', packages=packages, install_requires=REQUIREMENTS, - project_urls={ - 'Documentation': 'https://yt-dlp.readthedocs.io', - 'Source': 'https://github.com/yt-dlp/yt-dlp', - 'Tracker': 'https://github.com/yt-dlp/yt-dlp/issues', - 'Funding': 'https://github.com/yt-dlp/yt-dlp/blob/master/Collaborators.md#collaborators', - }, classifiers=[ 'Topic :: Multimedia :: Video', 'Development Status :: 5 - Production/Stable', |