mirror of
https://github.com/cheat/cheat.git
synced 2024-12-18 18:55:06 +01:00
Improve setup.py description
This commit is contained in:
parent
69f91e0cf4
commit
5caa8fed38
16
setup.py
16
setup.py
@ -1,3 +1,13 @@
|
|||||||
|
"""cheat
|
||||||
|
~~~~~~~~
|
||||||
|
|
||||||
|
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
|
||||||
|
"""
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
@ -6,10 +16,8 @@ setup(
|
|||||||
author = 'Chris Lane',
|
author = 'Chris Lane',
|
||||||
author_email = 'chris@chris-allen-lane.com',
|
author_email = 'chris@chris-allen-lane.com',
|
||||||
license = 'GPL3',
|
license = 'GPL3',
|
||||||
description = 'cheat allows you to create and view interactive cheatsheets '
|
description = 'cheat allows you to create and view interactive cheatsheets on the command-line',
|
||||||
'on the command-line. It was designed to help remind *nix system '
|
long_description = __doc__,
|
||||||
'administrators of options for commands that they use frequently, but not '
|
|
||||||
'frequently enough to remember.',
|
|
||||||
url = 'https://github.com/chrisallenlane/cheat',
|
url = 'https://github.com/chrisallenlane/cheat',
|
||||||
packages = find_packages(),
|
packages = find_packages(),
|
||||||
package_data = {
|
package_data = {
|
||||||
|
Loading…
Reference in New Issue
Block a user