Metadata-Version: 2.1
Name: dogebuild-tex
Version: 0.1.0.post1
Summary: Tex dogebuild plugin
Home-page: https://github.com/dogebuild/dogebuild-tex
Author: Kirill Sulim
Author-email: kirillsulim@gmail.com
License: mit
Description: # dogebuild-tex
        
        [![Travis (.org) branch](https://img.shields.io/travis/dogebuild/dogebuild-tex/master)](https://travis-ci.com/dogebuild/dogebuild-tex)
        [![PyPI](https://img.shields.io/pypi/v/dogebuild-tex)](https://pypi.org/project/dogebuild-tex/)
        [![Documentation Status](https://readthedocs.org/projects/dogebuild-tex/badge/?version=latest)](https://dogebuild-tex.readthedocs.io/en/latest/?badge=latest)
        [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
        
        Tex plugin for [dogebuild](https://github.com/dogebuild/dogebuild).
        
        ## Install
        
        To install dogebuild-tex call
        
        ```shell script
        pip install dogebuild-tex
        ```
        
        ## How to create project
        
        Create `dogefile.py` and fill it with following code:
        
        ```python
        from dogebuild_tex import Tex
        
        Tex()
        ```
        
        Create your latex document in `main.tex` file.
        To build project run `doge build` or `doge pdf`.
        
        ## Use docker image to build project
        
        Dogebuild-tex allow you to use docker image to keep your build reproducible.
        To use docker set image as tex binary as follow:
        
        ```python
        from dogebuild_tex import Tex, DockerTexBinary
        
        Tex(
            tex_binary=DockerTexBinary("{docker-image-name}")
        )
        ```
        
        Dogebuild will call docker at the build process.
        
        ## Documentation
        
        Advanced documentation for dogebuild available in [readthedocs](https://dogebuild.readthedocs.io).
        
        Advanced documentation for dogebuild-tex plugin available in [readthedocs](https://dogebuild-tex.readthedocs.io).
        
Keywords: dogebuild builder tex latex
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Description-Content-Type: text/markdown
