Compare commits

...

12 Commits
2.0.6 ... 2.0.9

Author SHA1 Message Date
e4417b2d65 Version bump
Realized a 2.0.8 had already been pushed to PyPi, so I just
version-bumped this to 2.0.9.
2014-06-03 22:38:24 -04:00
eda53cccd6 Minor tweaks on PR #163
- Backed out Windows-related work in `setup.py`, because it is still
  in-progress

- Minor changes to the `README`
2014-06-03 22:34:50 -04:00
ccfe2a9cbd missing file in version bump 2014-05-30 12:24:39 +10:00
301203f268 version bump as requested 2014-05-30 12:20:09 +10:00
9cd4bdd6d7 Merge branch 'master' of github.com:chid/cheat 2014-05-30 12:18:43 +10:00
7b895adee5 Merge branch 'master' of https://github.com/chrisallenlane/cheat
Conflicts:
	setup.py
2014-05-30 12:14:33 +10:00
b77b9e8541 Update README.md 2014-05-29 12:01:25 +10:00
d68fb456ba Added PyPi Badge
Added Badge
2014-05-29 11:59:40 +10:00
d7d033c908 Version bump 2014-05-28 21:02:27 -04:00
fa4b482832 Merge branch 'py3-fix' of github.com:chid/cheat into chid-py3-fix
* 'py3-fix' of github.com:chid/cheat:
  simple py3 import change
2014-05-28 21:00:52 -04:00
6a4414f538 simple py3 import change 2014-05-29 09:56:54 +10:00
538aeee2b2 adding creation of batch file 2014-05-29 09:40:58 +10:00
4 changed files with 17 additions and 5 deletions

View File

@ -9,6 +9,10 @@ remember.
`cheat` depends only on `python` and `pip`. `cheat` depends only on `python` and `pip`.
PyPI status:
[![Latest Version](https://pypip.in/version/cheat/badge.png)](https://pypi.python.org/pypi/cheat/)
[![Downloads](https://pypip.in/download/cheat/badge.png)](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

View File

@ -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.6') options = docopt(__doc__, version='cheat 2.0.9')
# list directories # list directories
if options['--directories']: if options['--directories']:

View File

@ -1,3 +1,3 @@
import sheet from . import sheet
import sheets from . import sheets
import utils from . import utils

View File

@ -3,7 +3,7 @@ import os
setup( setup(
name = 'cheat', name = 'cheat',
version = '2.0.6', 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',