cheat/setup.py
Chris Lane 91d01d9b96 Merge branch 'zsh_completions' of https://github.com/a-sk/cheat into a-sk-zsh_completions
* 'zsh_completions' of https://github.com/a-sk/cheat:
  Install zsh completions
  Add zsh cheats completions
  Add -d/--cheat_directories option to list directories containing cheatsheets
2013-09-01 14:36:02 -04:00

22 lines
654 B
Python

#!/usr/bin/env python
from distutils.core import setup
import os
setup(name='cheat',
version='1.0',
summary='Create and view interactive cheatsheets on the command-line',
homepage='',
author='Chris Lane',
author_email='chris@chris-allen-lane.com',
license='',
description='',
platform='Posix',
url='https://github.com/chrisallenlane/cheat',
packages=['cheatsheets'],
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
if '.' not in f]},
scripts=['cheat'],
data_files=[('/usr/share/zsh/site-functions', ['_cheat'])]
)