summaryrefslogtreecommitdiffstats
path: root/README.rst
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2015-12-20 00:04:57 -0500
committerrsiddharth <rsd@gnu.org>2015-12-20 00:04:57 -0500
commitae15bf910629378d9d5a101cf4ef9f9ad77174e5 (patch)
tree321e5fcd86ec3e0514909064fa40ad8b4e18b9c2 /README.rst
parentd939dadedf6b9d8b431ae15a2fdfcf5b5ffd63d5 (diff)
README.md -> README.rst
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst52
1 files changed, 52 insertions, 0 deletions
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..98388eb
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,52 @@
+LibrePlanet schedule generator
+==============================
+
+Get it
+------
+
+Install `virtualenv` and `python-dev` package.
+
+On a Debian based distribution, do::
+
+ # aptitude install virtualenv python-dev
+
+ $ cd path/to/lpschedule-generator
+ $ virtualenv .
+
+Activate virtual environment
+----------------------------
+
+::
+
+ $ cd path/to/lpschedule-generator
+ $ source bin/activate
+
+Heads up! Always activate the virtual environment before executing any
+of the commands in the following sections.
+
+Install script
+--------------
+
+::
+
+ $ python setup.py install
+
+Upgrade script
+--------------
+
+::
+
+ $ git pull origin master
+ $ python setup.py install
+
+Usage
+-----
+
+::
+
+ $ lps_gen YEAR path/to/lp-schd.md > path/to/program-schedule.html
+
+Replace `YEAR` with LP year; for example, for generating LP 2016
+schedule, the command will be::
+
+ $ lps_gen 2016 path/to/lp-schd.md > path/to/program-schedule.html