mirror of https://github.com/cheat/cheat.git
Minor tweaks.
This commit is contained in:
parent
e0adbbc5b9
commit
a8f91d4224
31
setup.py
31
setup.py
|
@ -1,26 +1,25 @@
|
||||||
"""cheat
|
"""cheat
|
||||||
~~~~~~~~
|
~~~~~~~~
|
||||||
|
cheat allows you to create and view interactive cheatsheets on the
|
||||||
cheat allows you to create and view interactive cheatsheets on the
|
command-line. It was designed to help remind *nix system administrators of
|
||||||
command-line. It was designed to help remind *nix system administrators of
|
options for commands that they use frequently, but not frequently enough
|
||||||
options for commands that they use frequently, but not frequently enough
|
to remember.
|
||||||
to remember.
|
:license: GPL3
|
||||||
:license: GPL3
|
|
||||||
"""
|
"""
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'cheat',
|
name = 'cheat',
|
||||||
version = '2.1.16',
|
version = '2.1.16',
|
||||||
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 on the command-line',
|
description = 'cheat allows you to create and view interactive cheatsheets on the command-line',
|
||||||
long_description = __doc__,
|
long_description = __doc__,
|
||||||
url = 'https://github.com/chrisallenlane/cheat',
|
url = 'https://github.com/chrisallenlane/cheat',
|
||||||
packages = find_packages(),
|
packages = find_packages(),
|
||||||
package_data = {
|
package_data = {
|
||||||
'cheat.cheatsheets': ['*'],
|
'cheat.cheatsheets': ['*'],
|
||||||
},
|
},
|
||||||
entry_points = {
|
entry_points = {
|
||||||
|
|
Loading…
Reference in New Issue