Metadata-Version: 2.0
Name: bib2glossary
Version: 0.0.1
Summary: A small package to convert between a latex bib file and a tex file containing glossaries entries
Home-page: https://github.com/chrisjsewell/bib2glossary
Author: Chris Sewell
Author-email: chrisj_sewell@hotmail.com
License: GPL
Keywords: latex biblatex bibtex glossaries acronyms
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
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.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Topic :: Utilities
Requires-Dist: bibtexparser (>=0.6.2)

# bib2glossary

## Installation

    >> pip install bib2glossary

## Usage

Currently only conversion of `\newacronym` is implemented:

    >> bib2acronym --help
    usage: bib2acronym [-h] [-a field] [-f field] filepath

    convert a bibtex file to a tex file containing acronym definitions

    positional arguments:
    filepath              bibtex file path

    optional arguments:
    -h, --help            show this help message and exit
    -a field, --abbrev-field field
                            the bib field defining the abbreviation (default: shorttitle)
    -f field, --full-field field
                            the bib field defining the full name (default: abstract)

or

    >> acronym2bib --help
    usage: acronym2bib [-h] [-a field] [-f field] filepath

    convert a tex file containing acronym definitions to a bibtex file

    positional arguments:
    filepath              tex file path

    optional arguments:
    -h, --help            show this help message and exit
    -a field, --abbrev-field field
                            the bib field defining the abbreviation (default: shorttitle)
    -f field, --full-field field
                            the bib field defining the full name (default: abstract)


