aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorshirt-dev <2660574+shirt-dev@users.noreply.github.com>2021-02-25 11:00:29 -0500
committerGitHub <noreply@github.com>2021-02-25 11:00:29 -0500
commitb45d4e4a8e89787ea400e53de9284d257ced6838 (patch)
treea79a01a52a0b102aee28b115c00616b6ed65efa5 /setup.py
parentb965087396ddb2d40dfe5bc12391ee000945129d (diff)
parent3e39273418ad6b2f740dccbcd949e065b1039946 (diff)
downloadhypervideo-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.py11
1 files changed, 6 insertions, 5 deletions
diff --git a/setup.py b/setup.py
index e5c9fec4c..20dbe573c 100644
--- a/setup.py
+++ b/setup.py
@@ -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
)