Metadata-Version: 2.1
Name: vector-plot-extractor
Version: 0.1.0
Summary: tools for extracting data from vector plots
Author-email: Yu-Chen Wang <ycwang-astro@users.noreply.github.com>
Project-URL: Homepage, https://github.com/ycwang-astro/vector-plot-extractor
Project-URL: Documentation, https://github.com/ycwang-astro/vector-plot-extractor
Project-URL: Repository, https://github.com/ycwang-astro/vector-plot-extractor.git
Project-URL: Issues, https://github.com/ycwang-astro/vector-plot-extractor/issues
Project-URL: Changelog, https://github.com/ycwang-astro/vector-plot-extractor
Keywords: vector graphic,vector plot,extractor,digitizer
Classifier: Development Status :: 3 - Alpha
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Intended Audience :: Science/Research
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: pymupdf

# vector-plot-extractor
tools for extracting data from vector plots

This Python package has been tested on various PDF files, including [example.pdf](examples/example.pdf), under normal usage conditions. However, it has not undergone comprehensive testing and optimization yet. I will improve it in the future. Your suggestions and contributions are welcome.

Documentation is currently in progress. Stay tuned for updates!

## Dependencies
This package mainly depends on the following packages:
- matplotlib
- numpy
- pymupdf

These will be automatically installed when running `pip install`.

## Installation
To install this package, you can simply use `pip`:
```
pip install vector-plot-extractor
```

## Usage
To execute the main UI, run this in your terminal
```
vpextract path/to/figure/file
```
To import this package in a Python script:
```Python
import vpextractor
```
