mdod 0.1.7__tar.gz → 0.1.9__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,15 +1,17 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mdod
3
- Version: 0.1.7
3
+ Version: 0.1.9
4
4
  Summary: MDOD, Multi-Dimensional data Outlier Detection
5
5
  Home-page: https://github.com/mddod/mdod
6
6
  Author: Z Shen
7
7
  Author-email: 626456708@qq.com
8
8
  License: BSD 3-Clause License
9
+ Platform: UNKNOWN
9
10
  Classifier: Development Status :: 5 - Production/Stable
10
11
  Classifier: Intended Audience :: Developers
11
12
  Classifier: Programming Language :: Python
12
13
  Classifier: Programming Language :: Python :: 3
13
14
  License-File: LICENSE.txt
14
15
 
15
- Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , or visit https://github.com/mddod/mdod
16
+ Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , visit https://github.com/mddod/mdod, or https://mddod.github.io/
17
+
@@ -20,6 +20,8 @@ cd mdod
20
20
  python setup.py install
21
21
 
22
22
  # usage example:
23
+ import numpy as np
24
+
23
25
  import mdod
24
26
 
25
27
  localFile = 'TestDataset.txt'
@@ -52,7 +54,7 @@ data1,data2,data3,data4,data5,data6
52
54
 
53
55
  ...]
54
56
 
55
- # rusult format:
57
+ # result format:
56
58
  [value1, '[data1 data2 data3 data4 data5 data6]', '0']
57
59
 
58
60
  [value2, '[data1 data2 data3 data4 data5 data6]', '1']
@@ -61,6 +63,7 @@ data1,data2,data3,data4,data5,data6
61
63
 
62
64
  ...
63
65
 
66
+ # file exampls:
67
+ Please visit https://github.com/mddod/mdod, or https://mddod.github.io/
64
68
 
65
69
 
66
-
@@ -1,15 +1,17 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: mdod
3
- Version: 0.1.7
3
+ Version: 0.1.9
4
4
  Summary: MDOD, Multi-Dimensional data Outlier Detection
5
5
  Home-page: https://github.com/mddod/mdod
6
6
  Author: Z Shen
7
7
  Author-email: 626456708@qq.com
8
8
  License: BSD 3-Clause License
9
+ Platform: UNKNOWN
9
10
  Classifier: Development Status :: 5 - Production/Stable
10
11
  Classifier: Intended Audience :: Developers
11
12
  Classifier: Programming Language :: Python
12
13
  Classifier: Programming Language :: Python :: 3
13
14
  License-File: LICENSE.txt
14
15
 
15
- Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , or visit https://github.com/mddod/mdod
16
+ Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , visit https://github.com/mddod/mdod, or https://mddod.github.io/
17
+
@@ -2,7 +2,7 @@ from setuptools import setup, find_packages
2
2
 
3
3
  setup(
4
4
  name="mdod",
5
- version="0.1.7",
5
+ version="0.1.9",
6
6
  packages=find_packages(),
7
7
  package_data={"": ["*"]},
8
8
  install_requires=[
@@ -11,7 +11,7 @@ setup(
11
11
  author="Z Shen",
12
12
  author_email="626456708@qq.com",
13
13
  description="MDOD, Multi-Dimensional data Outlier Detection",
14
- long_description="Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , or visit https://github.com/mddod/mdod",
14
+ long_description="Python library for Multi-Dimensional data Outlier/Anomaly Detection algorithm. For details please read README.md , visit https://github.com/mddod/mdod, or https://mddod.github.io/",
15
15
  license="BSD 3-Clause License",
16
16
  url="https://github.com/mddod/mdod",
17
17
  classifiers=[
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes