cheat-fork-echo/setup.py

17 lines
519 B
Python
Raw Normal View History

#!/usr/bin/env python
from distutils.core import setup
import os
setup(name='cheat',
version='1.0',
2013-08-21 09:00:24 +02:00
description='Create and view interactive cheatsheets on the command-line', # nopep8
author='Chris Lane',
author_email='chris@chris-allen-lane.com',
url='https://github.com/chrisallenlane/cheat',
packages=['cheatsheets'],
package_data={'cheatsheets': [f for f in os.listdir('cheatsheets')
if '.' not in f]},
scripts=['cheat']
)