Metadata-Version: 2.1
Name: formattex
Version: 0.1.0
Summary: A simple and uncompromising Latex code formatter
Home-page: https://foss.heptapod.net/fluiddyn/formattex
Author: paugier
Author-email: pierre.augier@univ-grenoble-alpes.fr
Project-URL: Bug Tracker, https://foss.heptapod.net/fluiddyn/formattex/-/issues
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: texsoup
Provides-Extra: dev
Requires-Dist: sphinx ; extra == 'dev'
Requires-Dist: sphinx-rtd-theme ; extra == 'dev'
Requires-Dist: numpydoc ; extra == 'dev'
Requires-Dist: nbsphinx ; extra == 'dev'
Requires-Dist: jupyter ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: pytest-cov ; extra == 'dev'
Requires-Dist: ipython ; extra == 'dev'
Provides-Extra: doc
Requires-Dist: sphinx ; extra == 'doc'
Requires-Dist: sphinx-rtd-theme ; extra == 'doc'
Requires-Dist: numpydoc ; extra == 'doc'
Requires-Dist: nbsphinx ; extra == 'doc'
Requires-Dist: jupyter ; extra == 'doc'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: pytest-cov ; extra == 'test'
Requires-Dist: ipython ; extra == 'test'

# formattex: a simple and uncompromising Latex code formatter

I didn't find a Latex formatter that fits my needs... Let's try to write such
minimalist Latex formatter.

## Getting started

```
pip install formattex
formattex input/*.tex -i
```

`-i` is for `--inplace`. In this mode, a file
`input/tmp_saved_input_article.tex` is saved.

## Internal

I tried with https://github.com/alvinwan/TexSoup but
https://github.com/phfaist/pylatexenc/ could also be used.
