2015-01-09 00:22:57 +01:00
|
|
|
"""cheat
|
2015-10-16 00:37:02 +02:00
|
|
|
~~~~~~~~
|
|
|
|
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.
|
|
|
|
:license: GPL3
|
2015-01-09 00:22:57 +01:00
|
|
|
"""
|
|
|
|
|
2015-01-08 23:58:35 +01:00
|
|
|
from setuptools import setup, find_packages
|
2014-05-29 01:40:58 +02:00
|
|
|
|
2014-04-27 05:31:13 +02:00
|
|
|
setup(
|
2015-10-16 00:37:02 +02:00
|
|
|
name = 'cheat',
|
2015-10-16 00:40:18 +02:00
|
|
|
version = '2.1.17',
|
2015-10-16 00:37:02 +02:00
|
|
|
author = 'Chris Lane',
|
|
|
|
author_email = 'chris@chris-allen-lane.com',
|
|
|
|
license = 'GPL3',
|
|
|
|
description = 'cheat allows you to create and view interactive cheatsheets on the command-line',
|
2015-01-09 00:22:57 +01:00
|
|
|
long_description = __doc__,
|
2015-10-16 00:37:02 +02:00
|
|
|
url = 'https://github.com/chrisallenlane/cheat',
|
|
|
|
packages = find_packages(),
|
|
|
|
package_data = {
|
2015-01-09 00:08:38 +01:00
|
|
|
'cheat.cheatsheets': ['*'],
|
2014-04-27 05:31:13 +02:00
|
|
|
},
|
2015-01-09 00:36:49 +01:00
|
|
|
entry_points = {
|
|
|
|
'console_scripts': [
|
|
|
|
'cheat = cheat.app:main',
|
|
|
|
],
|
2014-04-27 05:31:13 +02:00
|
|
|
},
|
|
|
|
install_requires = [
|
|
|
|
'docopt >= 0.6.1',
|
|
|
|
'pygments >= 1.6.0',
|
2014-06-04 04:34:50 +02:00
|
|
|
]
|
2014-04-27 05:31:13 +02:00
|
|
|
)
|