cheat-fork-echo/setup.py

25 lines
989 B
Python
Raw Normal View History

#!/usr/bin/env python
from distutils.core import setup
import os
setup(name='cheat',
version='1.0',
author='Chris Lane',
author_email='chris@chris-allen-lane.com',
2013-09-02 04:20:53 +02:00
license='GPL3',
description='cheat allows you to create and view interactive cheatsheets\
on the command-line. It was designed to help remind *nix system\
administrators of options for commands that they use frequently, but not\
frequently enough to remember.',
url='https://github.com/chrisallenlane/cheat',
packages=['cheatsheets'],
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
if '.' not in f]},
2013-08-29 17:06:05 +02:00
scripts=['cheat'],
data_files=[('/usr/share/zsh/site-functions', ['autocompletion/_cheat.zsh']),
2013-10-11 16:26:24 +02:00
('/etc/bash_completion.d' , ['autocompletion/cheat.bash']),
('/usr/share/fish/completions' , ['autocompletion/cheat.fish'])
]
)