Metadata-Version: 2.0
Name: lpschedule-generator
Version: 0.1.0.dev2
Summary: LibrePlanet schedule generator
Home-page: https://notabug.org/rsd/lpschedule-generator/
Author: rsiddharth
Author-email: rsd@gnu.org
License: GNU General Public License version 3 or later
Platform: GNU/Linux
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Other Audience
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Topic :: Text Processing
Classifier: Topic :: Utilities
Requires-Dist: Jinja2
Requires-Dist: beautifulsoup4
Requires-Dist: mistune
Requires-Dist: mock
Requires-Dist: nose

# LibrePlanet schedule generator

## Get it

    $ git clone https://notabug.org/rsd/lpschedule-generator.git

## Setup virtual environment

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

This will install the script.

## 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


