Metadata-Version: 1.1
Name: makeCourse
Version: 0.3
Summary: A tool to build a course (from list of exercices, lectures, etc.)
Home-page: https://github.com/thilaire/makeCourse
Author: Thibault Hilaire
Author-email: thibault@docmatic.fr
License: MIT
Description: makeCourse
        ----------
        
        To use it, define a sub-class of the class `Session` with the methods `make` and `files`
        
            class CM(Session):
                def make(self, options):
                    print( " - build handout")
                    self.writeFileFromTemplate( 'CM.tex', self.name+'.tex', {} )
                    runCommand( ['pdflatex', self.name+'.tex'], 2 )
        
                def files(self):
                    return [ self.name+'.pdf' ]
        
Keywords: latex lectures course
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Education
Classifier: Topic :: Text Processing :: Markup :: LaTeX
Classifier: Intended Audience :: Science/Research
