Metadata-Version: 2.1
Name: PyLaTeX
Version: 1.4.1
Summary: A Python library for creating LaTeX files and snippets
Home-page: https://github.com/JelteF/PyLaTeX
Author: Jelte Fennema
Author-email: pylatex@jeltef.nl
License: MIT
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Text Processing :: Markup :: LaTeX
Requires-Dist: ordered-set
Provides-Extra: all
Requires-Dist: 3to2 ; extra == 'all'
Requires-Dist: flake8 <3.0.0 ; extra == 'all'
Requires-Dist: pyflakes ==1.2.3 ; extra == 'all'
Requires-Dist: flake8-docstrings ==1.3.0 ; extra == 'all'
Requires-Dist: future >=0.15.2 ; extra == 'all'
Requires-Dist: sphinx ; extra == 'all'
Requires-Dist: matplotlib ; extra == 'all'
Requires-Dist: pytest >=4.6 ; extra == 'all'
Requires-Dist: pep8-naming ==0.8.2 ; extra == 'all'
Requires-Dist: pytest-cov ; extra == 'all'
Requires-Dist: quantities ; extra == 'all'
Requires-Dist: pydocstyle ==3.0.0 ; extra == 'all'
Requires-Dist: numpy ; extra == 'all'
Requires-Dist: pycodestyle ==2.0.0 ; extra == 'all'
Requires-Dist: flake8-putty ; extra == 'all'
Requires-Dist: coverage ; extra == 'all'
Provides-Extra: convert_to_py2
Requires-Dist: 3to2 ; extra == 'convert_to_py2'
Requires-Dist: future >=0.15.2 ; extra == 'convert_to_py2'
Provides-Extra: docs
Requires-Dist: sphinx ; extra == 'docs'
Provides-Extra: matplotlib
Requires-Dist: matplotlib ; extra == 'matplotlib'
Provides-Extra: matrices
Requires-Dist: numpy ; extra == 'matrices'
Provides-Extra: quantities
Requires-Dist: quantities ; extra == 'quantities'
Requires-Dist: numpy ; extra == 'quantities'
Provides-Extra: testing
Requires-Dist: flake8 <3.0.0 ; extra == 'testing'
Requires-Dist: pep8-naming ==0.8.2 ; extra == 'testing'
Requires-Dist: flake8-docstrings ==1.3.0 ; extra == 'testing'
Requires-Dist: pycodestyle ==2.0.0 ; extra == 'testing'
Requires-Dist: pydocstyle ==3.0.0 ; extra == 'testing'
Requires-Dist: pyflakes ==1.2.3 ; extra == 'testing'
Requires-Dist: pytest >=4.6 ; extra == 'testing'
Requires-Dist: flake8-putty ; extra == 'testing'
Requires-Dist: coverage ; extra == 'testing'
Requires-Dist: pytest-cov ; extra == 'testing'

PyLaTeX |Travis| |License| |PyPi| |Stable Docs| |Latest Docs|
=============================================================

PyLaTeX is a Python library for creating and compiling LaTeX files or
snippets. The goal of this library is being an easy, but extensible
interface between Python and LaTeX.

Installation
------------
Simply install using ``pip``::

    pip install pylatex

And then install a relevant LaTeX processor and other dependencies. Examples:

Ubuntu
~~~~~~~
    sudo apt-get install texlive-pictures texlive-science \
    texlive-latex-extra latexmk

Documentation
-------------

There are two versions of the documentation:

- The one generated for the `last stable release
  <https://jeltef.github.io/PyLaTeX/current/>`__.
- The one based on the `latest git version
  <https://jeltef.github.io/PyLaTeX/latest/>`__.

Contributing
------------

Read the `How to
contribute <https://jeltef.github.io/PyLaTeX/latest/contributing.html>`__
page for tips and rules when you want to contribute.

Examples
--------

The documentation contains a lot of examples that show the
functionality. To give an impression of what can be generated see this
picture:

.. figure:: https://raw.github.com/JelteF/PyLaTeX/master/docs/source/_static/screenshot.png
   :alt: Generated PDF by PyLaTeX

Copyright and License
---------------------

Copyright 2014 Jelte Fennema, under `the MIT
license <https://github.com/JelteF/PyLaTeX/blob/master/LICENSE>`__

.. |Travis| image:: https://img.shields.io/travis/JelteF/PyLaTeX.svg
   :target: https://travis-ci.org/JelteF/PyLaTeX
   
.. |License| image:: https://img.shields.io/github/license/jeltef/pylatex.svg   
   :target: https://github.com/JelteF/PyLaTeX/blob/master/LICENSE

.. |PyPi| image:: https://img.shields.io/pypi/v/pylatex.svg
   :target: https://pypi.python.org/pypi/PyLaTeX
   
.. |Latest Docs| image:: https://img.shields.io/badge/docs-latest-brightgreen.svg?style=flat
   :target: https://jeltef.github.io/PyLaTeX/latest/
   
.. |Stable Docs| image:: https://img.shields.io/badge/docs-stable-brightgreen.svg?style=flat
   :target: https://jeltef.github.io/PyLaTeX/current/
