Metadata-Version: 2.4
Name: heavyedge
Version: 1.8.0
Summary: Central package for heavy edge coating profile analysis
Author-email: Jisoo Song <jeesoo9595@snu.ac.kr>
License-Expression: MIT
Project-URL: homepage, https://pypi.python.org/pypi/heavyedge/
Project-URL: source, https://github.com/heavyedge/heavyedge
Project-URL: documentation, https://heavyedge.readthedocs.io
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Scientific/Engineering
Classifier: Operating System :: OS Independent
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy
Requires-Dist: scipy
Requires-Dist: h5py
Requires-Dist: PyYAML
Provides-Extra: test
Requires-Dist: pytest; extra == "test"
Requires-Dist: tqdm; extra == "test"
Provides-Extra: doc
Requires-Dist: sphinx; extra == "doc"
Requires-Dist: numpydoc; extra == "doc"
Requires-Dist: pydata_sphinx_theme; extra == "doc"
Requires-Dist: matplotlib; extra == "doc"
Provides-Extra: dev
Requires-Dist: flake8; extra == "dev"
Requires-Dist: black; extra == "dev"
Requires-Dist: isort; extra == "dev"
Requires-Dist: heavyedge[doc,test]; extra == "dev"
Dynamic: license-file

# HeavyEdge

[![Supported Python Versions](https://img.shields.io/pypi/pyversions/heavyedge.svg)](https://pypi.python.org/pypi/heavyedge/)
[![PyPI Version](https://img.shields.io/pypi/v/heavyedge.svg)](https://pypi.python.org/pypi/heavyedge/)
[![License](https://img.shields.io/github/license/heavyedge/heavyedge)](https://github.com/heavyedge/heavyedge/blob/master/LICENSE)
[![CI](https://github.com/heavyedge/heavyedge/actions/workflows/ci.yml/badge.svg)](https://github.com/heavyedge/heavyedge/actions/workflows/ci.yml)
[![CD](https://github.com/heavyedge/heavyedge/actions/workflows/cd.yml/badge.svg)](https://github.com/heavyedge/heavyedge/actions/workflows/cd.yml)
[![Docs](https://readthedocs.org/projects/heavyedge/badge/?version=latest)](https://heavyedge.readthedocs.io/en/latest/?badge=latest)

![title](https://heavyedge.readthedocs.io/en/latest/_images/plot-header.png)

Basic package for heavy edge coating profile analysis.

Provides:

- Profile preprocessing and averaging.
- File I/O and command line API.

## Installation

```
$ pip install heavyedge
```

## Documentation

The manual can be found online:

> https://heavyedge.readthedocs.io

If you want to build the document yourself, get the source code and install with `[doc]` dependency.
Then, go to `doc` directory and build the document:

```
$ pip install .[doc]
$ cd doc
$ make html
```

Document will be generated in `build/html` directory. Open `index.html` to see the central page.

## Developing

### Installation

For development features, you must install the package by `pip install -e .[dev]`.

### Testing

Run `pytest` command to perform unit test.

When doctest is run, buildable sample data are rebuilt by default.
To disable this, set `HEAVYEDGE_TEST_REBUILD` environment variable to zero.
For example,
```
HEAVYEDGE_TEST_REBUILD=0 pytest
```
