2013-08-13 12:01:06 +02:00
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
from distutils.core import setup
|
|
|
|
import os
|
|
|
|
|
|
|
|
setup(name='cheat',
|
|
|
|
version='1.0',
|
2013-08-31 20:19:03 +02:00
|
|
|
summary='Create and view interactive cheatsheets on the command-line',
|
|
|
|
homepage='',
|
2013-08-13 12:01:06 +02:00
|
|
|
author='Chris Lane',
|
|
|
|
author_email='chris@chris-allen-lane.com',
|
2013-09-02 04:20:53 +02:00
|
|
|
license='GPL3',
|
2013-08-31 20:19:03 +02:00
|
|
|
description='',
|
|
|
|
platform='Posix',
|
2013-08-13 12:01:06 +02:00
|
|
|
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', ['_cheat'])]
|
2013-08-13 12:01:06 +02:00
|
|
|
)
|