Metadata-Version: 1.1
Name: plotextractor
Version: 0.1.1
Summary: Small library for extracting plots used in scholarly communication.
Home-page: https://github.com/inspirehep/plotextractor
Author: CERN
Author-email: admin@inspirehep.net
License: GPLv2
Description: ..
            This file is part of plotextractor.
            Copyright (C) 2015 CERN.
        
            plotextractor is free software; you can redistribute it
            and/or modify it under the terms of the GNU General Public License as
            published by the Free Software Foundation; either version 2 of the
            License, or (at your option) any later version.
        
            plotextractor is distributed in the hope that it will be
            useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
            General Public License for more details.
        
            You should have received a copy of the GNU General Public License
            along with plotextractor; if not, write to the
            Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
            MA 02111-1307, USA.
        
            In applying this license, CERN does not
            waive the privileges and immunities granted to it by virtue of its status
            as an Intergovernmental Organization or submit itself to any jurisdiction.
        
        
        ===============
         plotextractor
        ===============
        
        Small library for converting and mapping plots in TeX source used in scholarly communication.
        
        * Free software: GPLv2
        * Documentation: http://pythonhosted.org/plotextractor/
        
        *Originally exported from Invenio https://github.com/inveniosoftware/invenio.*
        
        Installation
        ============
        
        .. code-block:: shell
        
            pip install plotextractor
        
        
        
        Usage
        =====
        
        .. code-block:: python
        
            from plotextractor import process_tarball
            plots = process_tarball("/path/to/tarball.tar.gz")
            print(plots[0])
            {
                'url': '/path/to/tarball.tar.gz_files/d15-120f3d.png',
                'captions': ['The $\\rho^0$ meson properties: (a) Mass ...']
                'name': 'd15-120f3d',
                'label': 'fig:mass'
            }
        
        
        ..
            This file is part of plotextractor.
            Copyright (C) 2015 CERN.
        
            plotextractor is free software; you can redistribute it
            and/or modify it under the terms of the GNU General Public License as
            published by the Free Software Foundation; either version 2 of the
            License, or (at your option) any later version.
        
            plotextractor is distributed in the hope that it will be
            useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
            MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
            General Public License for more details.
        
            You should have received a copy of the GNU General Public License
            along with plotextractor; if not, write to the
            Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston,
            MA 02111-1307, USA.
        
            In applying this license, CERN does not
            waive the privileges and immunities granted to it by virtue of its status
            as an Intergovernmental Organization or submit itself to any jurisdiction.
        
        Changes
        =======
        
        Version 0.1.1 (2015-12-04)
        
        - Improves extraction from TeX file by reading files with encoding.
        
        Version 0.1.0 (2015-10-19)
        
        - Initial export from Invenio Software <https://github.com/inveniosoftware/invenio>
        - Restructured into stripped down, standalone version
        
Keywords: plots figures extraction TeX LaTeX
Platform: any
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License v2 (GPLv2)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
