mirror of
https://github.com/cheat/cheat.git
synced 2024-11-14 08:01:09 +01:00
20 lines
588 B
Python
20 lines
588 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']
|
|
)
|