Skip to content

Commit

Permalink
feat(docs): add rerun diagram for readme (#30)
Browse files Browse the repository at this point in the history
* docs(documentation): add documentation link to README in toml

* docs(example-notebook): rerun the example notebook

* docs(README): refine examples and add more images

* docs(pkg-version): update pkg version on the badge

---------

Co-authored-by: N. L <nino@pleno.earth>
  • Loading branch information
Aeternalis-Ingenium and ninopleno committed Dec 11, 2023
1 parent f9c4ad4 commit 06bb49f
Show file tree
Hide file tree
Showing 11 changed files with 715 additions and 552 deletions.
301 changes: 182 additions & 119 deletions README.md

Large diffs are not rendered by default.

Binary file added docs/assets/DetectionResult.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/assets/Exceedances.png
Binary file not shown.
Binary file added docs/assets/PDFGPD.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/assets/PeaksOverThreshold.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed docs/assets/QQPlot-GPD.png
Binary file not shown.
Binary file added docs/assets/QQPlot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
959 changes: 529 additions & 430 deletions docs/example.ipynb

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "anomalytics"
description = "The ultimate anomaly detection library."
readme = "README.md"
version = "0.1.5"
version = "0.1.6"
license = {file = "LICENSE"}
requires-python = ">=3.10"
authors = [
Expand Down Expand Up @@ -47,6 +47,7 @@ dependencies = [

[project.urls]
repository = "https://github.com/Aeternalis-Ingenium/anomalytics"
documentation = "https://github.com/Aeternalis-Ingenium/anomalytics/blob/trunk/README.md"

[project.optional-dependencies]
codequality = [
Expand Down
2 changes: 1 addition & 1 deletion src/anomalytics/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = "0.1.5"
__version__ = "0.1.6"

__all__ = [
"get_anomaly",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@


def test_pkg_version():
assert __version__ == "0.1.5"
assert __version__ == "0.1.6"

0 comments on commit 06bb49f

Please sign in to comment.