Metadata-Version: 2.1
Name: mplscience
Version: 0.0.1
Summary: Matplotlib style for scientific publications.
Home-page: https://github.com/adamgayoso/mplscience
License: MIT
Author: Adam Gayoso
Author-email: adamgayoso@berkeley.edu
Requires-Python: >=3.6.1,<4.0
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: MacOS :: MacOS X
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: importlib-metadata (>=1.0,<2.0); python_version < "3.8"
Requires-Dist: matplotlib
Description-Content-Type: text/markdown

# mplscience

Matplotlib style for scientific publications. This style keeps things pretty simple and aims to make moderate improvements to the base matplotlib style. It also sets things like the PDF font type to make it easier to interact with figures in Adobe Illustrator.


## Usage

```python
import mplscience
mplscience.available_styles()
mplscience.set_style()
```

If you're using Seaborn, you may want to run `sns.reset_orig()` first to clear Seaborn-specific styling.

The style can also be using in a context like this:

```python
import mplscience
with mplscience.style_context():
    plt.plot(x, y)
```


