Metadata-Version: 2.1
Name: franklin
Version: 0.12
Summary: Retrieve scientific papers and manage associated citations.
Home-page: https://github.com/canismarko/franklin
Author: Mark Wolfman
Author-email: canismarko@gmail.com
License: GPLv3
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Requires-Dist: bibtexparser
Requires-Dist: requests
Requires-Dist: tqdm
Requires-Dist: pandas
Requires-Dist: titlecase

Franklin Citation Toolkit
=========================

.. image:: https://readthedocs.org/projects/franklin/badge/?version=latest
  :target: https://franklin.readthedocs.io/en/latest/?badge=latest
     :alt: Documentation Status
.. image:: https://travis-ci.com/canismarko/franklin.svg?branch=master
  :target: https://travis-ci.com/canismarko/franklin
.. image:: https://coveralls.io/repos/github/canismarko/franklin/badge.svg?branch=master
  :target: https://coveralls.io/github/canismarko/franklin?branch=master
.. image:: https://badge.fury.io/py/franklin.svg
  :target: https://badge.fury.io/py/franklin	   

``franklin`` is a set of tools for accessing research articles and
their associated bibtex references.

The following console scripts are available.

- ``fetch-doi`` - Retrieve PDFs and bibtex entries.
- ``abbreviate-journals`` - Parse a bibtex file and look up abbreviated journal names.
- ``bibtex-cleanup`` - [coming soon] Parse a bibtex file and clean it up.

Development
-----------

For development, a **developer installation** through pip is recommended.

.. code:: bash

	  $ git fetch https://github.com/canismarko/franklin.git
	  $ pip install franklin/requirements.txt
	  $ pip install -e franklin/

Run the tests using pytest:

.. code:: bash

	  $ pytest


