From: W. Trevor King Date: Sun, 30 Jun 2013 18:11:18 +0000 (-0400) Subject: README: Add installation and testing advice X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=9d6479b8f126e36cca904e3a63e08a779e04fbdf;p=pycalendar.git README: Add installation and testing advice --- diff --git a/README b/README index e0e54cb..053a1f9 100644 --- a/README +++ b/README @@ -13,9 +13,29 @@ weight. __ `elmcity code`_ +Installation +============ + +Pycalendar is packaged with distutils_, so you can install it in all +the usual ways. Any of the following should work:: + + $ python setup.py install + $ pip install pycalendar + +There are no dependencies outside Python's standard library. + +Testing +======= + +Test with nose_:: + + $ nosetests --with-doctest --doctest-tests pycalendar + .. _Calagator: http://calagator.org/ +.. _distutils: http://docs.python.org/3/distutils/ .. _elmcity: http://elmcity.cloudapp.net/ .. _elmcity code: https://github.com/judell/elmcity .. _feedparser: https://pypi.python.org/pypi/feedparser/ .. _Google Calendar: https://support.google.com/calendar/ +.. _nose: https://nose.readthedocs.org/en/latest/