mirror of
https://github.com/cheat/cheat.git
synced 2025-12-09 00:44:01 +01:00
Compare commits
9 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
e4417b2d65 | ||
|
|
eda53cccd6 | ||
|
|
ccfe2a9cbd | ||
|
|
301203f268 | ||
|
|
9cd4bdd6d7 | ||
|
|
7b895adee5 | ||
|
|
b77b9e8541 | ||
|
|
d68fb456ba | ||
|
|
538aeee2b2 |
12
README.md
12
README.md
@@ -9,6 +9,10 @@ remember.
|
|||||||
|
|
||||||
`cheat` depends only on `python` and `pip`.
|
`cheat` depends only on `python` and `pip`.
|
||||||
|
|
||||||
|
PyPI status:
|
||||||
|
|
||||||
|
[](https://pypi.python.org/pypi/cheat/)
|
||||||
|
[](https://pypi.python.org/pypi/cheat/)
|
||||||
|
|
||||||
Example
|
Example
|
||||||
-------
|
-------
|
||||||
@@ -45,6 +49,14 @@ to store notes on your favorite cookie recipes, feel free.
|
|||||||
|
|
||||||
Installing
|
Installing
|
||||||
----------
|
----------
|
||||||
|
|
||||||
|
### Using pip ###
|
||||||
|
|
||||||
|
sudo pip install cheat
|
||||||
|
|
||||||
|
|
||||||
|
### Manually ###
|
||||||
|
|
||||||
First install the required python dependencies with:
|
First install the required python dependencies with:
|
||||||
|
|
||||||
sudo pip install docopt pygments
|
sudo pip install docopt pygments
|
||||||
|
|||||||
@@ -38,7 +38,7 @@ from docopt import docopt
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
# parse the command-line options
|
# parse the command-line options
|
||||||
options = docopt(__doc__, version='cheat 2.0.7')
|
options = docopt(__doc__, version='cheat 2.0.9')
|
||||||
|
|
||||||
# list directories
|
# list directories
|
||||||
if options['--directories']:
|
if options['--directories']:
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -3,7 +3,7 @@ import os
|
|||||||
|
|
||||||
setup(
|
setup(
|
||||||
name = 'cheat',
|
name = 'cheat',
|
||||||
version = '2.0.7',
|
version = '2.0.9',
|
||||||
author = 'Chris Lane',
|
author = 'Chris Lane',
|
||||||
author_email = 'chris@chris-allen-lane.com',
|
author_email = 'chris@chris-allen-lane.com',
|
||||||
license = 'GPL3',
|
license = 'GPL3',
|
||||||
|
|||||||
Reference in New Issue
Block a user