diff options
author | shirt-dev <2660574+shirt-dev@users.noreply.github.com> | 2021-02-25 11:00:29 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-25 11:00:29 -0500 |
commit | b45d4e4a8e89787ea400e53de9284d257ced6838 (patch) | |
tree | a79a01a52a0b102aee28b115c00616b6ed65efa5 /setup.py | |
parent | b965087396ddb2d40dfe5bc12391ee000945129d (diff) | |
parent | 3e39273418ad6b2f740dccbcd949e065b1039946 (diff) | |
download | hypervideo-pre-b45d4e4a8e89787ea400e53de9284d257ced6838.tar.lz hypervideo-pre-b45d4e4a8e89787ea400e53de9284d257ced6838.tar.xz hypervideo-pre-b45d4e4a8e89787ea400e53de9284d257ced6838.zip |
Fix completion paths, zsh pip completion install (#114)
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -27,8 +27,9 @@ if len(sys.argv) >= 2 and sys.argv[1] == 'py2exe': print("inv") else: files_spec = [ - ('etc/bash_completion.d', ['yt-dlp.bash-completion']), - ('etc/fish/completions', ['yt-dlp.fish']), + ('share/bash-completion/completions', ['completions/bash/*']), + ('share/zsh/site-functions', ['completions/zsh/*']), + ('share/fish/vendor_completions.d', ['completions/fish/*']), ('share/doc/yt_dlp', ['README.txt']), ('share/man/man1', ['yt-dlp.1']) ] @@ -86,7 +87,7 @@ setup( #'Funding': 'https://donate.pypi.org', }, classifiers=[ - "Topic :: Multimedia :: Video", + "Topic :: Multimedia :: Video", "Development Status :: 5 - Production/Stable", "Environment :: Console", "Programming Language :: Python", @@ -110,7 +111,7 @@ setup( "Operating System :: OS Independent", ], python_requires='>=2.6', - - cmdclass={'build_lazy_extractors': build_lazy_extractors}, + + cmdclass={'build_lazy_extractors': build_lazy_extractors}, **params ) |