You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
82 lines
1.9 KiB
82 lines
1.9 KiB
8 months ago
|
Metadata-Version: 2.1
|
||
|
Name: pybtex
|
||
|
Version: 0.24.0
|
||
|
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: License :: OSI Approved :: MIT License
|
||
|
Classifier: Operating System :: OS Independent
|
||
|
Classifier: Programming Language :: Python
|
||
|
Classifier: Programming Language :: Python :: 2
|
||
|
Classifier: Programming Language :: Python :: 3
|
||
|
Classifier: Topic :: Text Processing :: Markup :: LaTeX
|
||
|
Classifier: Topic :: Text Processing :: Markup :: XML
|
||
|
Classifier: Topic :: Utilities
|
||
|
Requires-Python: >=2.7,!=3.0.*,!=3.1.*,!=3.2.*
|
||
|
Requires-Dist: PyYAML (>=3.01)
|
||
|
Requires-Dist: latexcodec (>=1.0.4)
|
||
|
Requires-Dist: six
|
||
|
Provides-Extra: test
|
||
|
Requires-Dist: pytest ; extra == 'test'
|
||
|
|
||
|
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>`_
|
||
|
|
||
|
|