Metadata-Version: 2.1
Name: bibtex2cff
Version: 0.1.0
Summary: Converting Bibtex to CITATION.cff fileformat
License: MIT
Keywords: bibtex,cff,citation,citation-file-format
Author: Anselm Hahn
Author-email: anselm.hahn@gmail.com
Requires-Python: >=3.8.1,<4.0.0
Classifier: Development Status :: 3 - Alpha
Classifier: Environment :: Console
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: LaTeX
Requires-Dist: bibtexparser (>=1.4.0,<2.0.0)
Requires-Dist: pydantic[email] (>=1.10.7,<2.0.0)
Requires-Dist: pyyaml (>=6.0,<7.0)
Description-Content-Type: text/markdown

# BibTeX2CFF

## Description

This is a simple CMD-tool to convert BibTeX files to CFF files. It is dedicated to the [Citation File Format](https://citation-file-format.github.io/), which is a YAML-based format for bibliographic metadata.

The idea is faster to generate CFF files from BibTeX files, which can be used in other tools, such as [Zenodo](https://zenodo.org/).


## Installation

```bash
pip install bibtex2cff
```

## Usage

```bash
bibtex2cff <input.bib> -o <output.cff>
```


## Development

### Installation

```bash
git clone
cd bibtex2cff
poetry install --all-extras --with dev
```

### Testing

```bash
poetry run pytest
```

### Linting

```bash
poetry run flake8
poetry run black .
poetry run isort .
```

### Contributing

See [CONTRIBUTING.md](CONTRIBUTING.md) for more information.

### License

This project is licensed under the terms of the [MIT license](LICENSE).
```

