From a781f6a8f7cbe1ef5e8b6e25e999325e2a40dda4 Mon Sep 17 00:00:00 2001 From: a-sk Date: Thu, 29 Aug 2013 19:06:05 +0400 Subject: [PATCH] Install zsh completions --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index f4fd1c8..e05005a 100644 --- a/setup.py +++ b/setup.py @@ -12,5 +12,6 @@ setup(name='cheat', packages=['cheatsheets'], package_data={'cheatsheets': [f for f in os.listdir('cheatsheets') if '.' not in f]}, - scripts=['cheat'] + scripts=['cheat'], + data_files=[('/usr/share/zsh/site-functions', ['_cheat'])] )