tsadmetrics 0.1.0__tar.gz → 0.1.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tsadmetrics
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Librería para evaluación de detección de anomalías en series temporales
5
5
  Home-page: https://github.com/pathsko/TSADmetrics
6
6
  Author: Pedro Rafael Velasco Priego
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "tsadmetrics"
3
- version = "0.1.0"
3
+ version = "0.1.1"
4
4
  description = "Librería para evaluación de detección de anomalías en series temporales"
5
5
  authors = [
6
6
  { name = "Pedro Rafael Velasco Priego", email = "i12veprp@uco.es" }
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
5
5
 
6
6
  setup(
7
7
  name="tsadmetrics",
8
- version="0.1.0",
8
+ version="0.1.1",
9
9
  author="Pedro Rafael Velasco Priego",
10
10
  author_email="i12veprp@uco.es",
11
11
  description="A library for time series anomaly detection metrics and evaluation.",
@@ -1,6 +1,12 @@
1
1
  from .binary_metrics import *
2
2
  from .non_binary_metrics import *
3
3
  from .utils import *
4
+
5
+ import sys
6
+ import os
7
+ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "_tsadeval")))
8
+
9
+
4
10
  __author__ = 'Pedro Rafael Velasco Priego i12veprp@uco.es'
5
11
  __version__ = "0.0.1"
6
12
  __all__ = ['point_wise_recall', 'point_wise_precision', 'point_wise_f_score','point_adjusted_recall',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: tsadmetrics
3
- Version: 0.1.0
3
+ Version: 0.1.1
4
4
  Summary: Librería para evaluación de detección de anomalías en series temporales
5
5
  Home-page: https://github.com/pathsko/TSADmetrics
6
6
  Author: Pedro Rafael Velasco Priego
File without changes
File without changes