Metadata-Version: 2.1
Name: franklin
Version: 0.14
Summary: Retrieve scientific papers and manage associated citations.
Author-email: Mark Wolfman <wolfman@anl.gov>
Project-URL: Homepage, https://github.com/canismarko/franklin
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: Topic :: Utilities
Classifier: Topic :: Scientific/Engineering
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: bibtexparser
Requires-Dist: requests
Requires-Dist: tqdm
Requires-Dist: pandas
Requires-Dist: titlecase
Requires-Dist: orgparse
Provides-Extra: dev
Requires-Dist: black; extra == "dev"
Requires-Dist: pytest; extra == "dev"
Requires-Dist: build; extra == "dev"
Requires-Dist: twine; extra == "dev"
Requires-Dist: flake8; extra == "dev"

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
