1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93
|
Metadata-Version: 2.4
Name: pybtex
Version: 0.25.1
Summary: A BibTeX-compatible bibliography processor in Python
Home-page: https://pybtex.org/
Author: Andrey Golovizin
Author-email: ag@sologoc.com
License: MIT
Project-URL: Documentation, https://docs.pybtex.org/
Project-URL: Code, https://bitbucket.org/pybtex-devs/pybtex
Project-URL: Issue tracker, https://bitbucket.org/pybtex-devs/pybtex/issues
Platform: platform-independent
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: End Users/Desktop
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Text Processing :: Markup :: LaTeX
Classifier: Topic :: Text Processing :: Markup :: XML
Classifier: Topic :: Utilities
Requires-Python: >=3.6
License-File: COPYING
Requires-Dist: PyYAML>=3.01
Requires-Dist: latexcodec>=1.0.4
Requires-Dist: importlib_metadata; python_version < "3.10"
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Provides-Extra: doc
Requires-Dist: sphinx; extra == "doc"
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: license
Dynamic: license-file
Dynamic: platform
Dynamic: project-url
Dynamic: provides-extra
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary
BibTeX-compatible bibliography processor in Python
==================================================
Synopsis
--------
::
latex foo.tex
pybtex foo.aux
latex foo.tex
latex foo.tex
Description
-----------
Pybtex reads citation information from a file and
produces a formatted bibliography. BibTeX style files are supported.
Alternatively it is possible to write styles in Python.
Pybtex currently understands the following bibliography formats:
- BibTeX
- BibTeXML
- YAML-based format
The resulting bibliography may be output in one of the following formats
(not supported by legacy BibTeX styles):
- LaTeX
- HTML
- markdown
- plain text
See also
--------
- `Home page <https://pybtex.org/>`_
- `Pybtex at Bitbucket <https://bitbucket.org/pybtex-devs/pybtex>`_
- `Pybtex at PyPI <https://pypi.org/project/pybtex>`_
|