Metadata-Version: 2.1
Name: PyLaTeX
Version: 1.4.2
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
License-File: LICENSE
Requires-Dist: ordered-set
Provides-Extra: docs
Requires-Dist: sphinx; extra == "docs"
Requires-Dist: jinja2<3.0; extra == "docs"
Requires-Dist: MarkupSafe==2.0.1; extra == "docs"
Requires-Dist: alabaster<0.7.12; extra == "docs"
Provides-Extra: matrices
Requires-Dist: numpy; extra == "matrices"
Provides-Extra: matplotlib
Requires-Dist: matplotlib; extra == "matplotlib"
Provides-Extra: quantities
Requires-Dist: quantities; extra == "quantities"
Requires-Dist: numpy; extra == "quantities"
Provides-Extra: testing
Requires-Dist: pytest>=4.6; extra == "testing"
Requires-Dist: coverage; extra == "testing"
Requires-Dist: pytest-cov; extra == "testing"
Requires-Dist: black; extra == "testing"
Requires-Dist: isort; extra == "testing"
Provides-Extra: packaging
Requires-Dist: twine; extra == "packaging"
Provides-Extra: all
Requires-Dist: pytest-cov; extra == "all"
Requires-Dist: sphinx; extra == "all"
Requires-Dist: coverage; extra == "all"
Requires-Dist: twine; extra == "all"
Requires-Dist: black; extra == "all"
Requires-Dist: matplotlib; extra == "all"
Requires-Dist: quantities; extra == "all"
Requires-Dist: MarkupSafe==2.0.1; extra == "all"
Requires-Dist: jinja2<3.0; extra == "all"
Requires-Dist: pytest>=4.6; extra == "all"
Requires-Dist: alabaster<0.7.12; extra == "all"
Requires-Dist: numpy; extra == "all"
Requires-Dist: isort; extra == "all"

PyLaTeX |Actions| |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>`__

.. |Actions| image:: https://github.com/JelteF/PyLaTeX/actions/workflows/ci.yml/badge.svg
   :target: https://github.com/JelteF/PyLaTeX/actions/workflows/ci.yml
   
.. |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/
