nkia-ai-dependency 0.7.0__tar.gz → 0.8.0__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: nkia-ai-dependency
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.8.0
|
|
4
4
|
Summary: NKIA AI Shared Dependency
|
|
5
5
|
Author: hjyang
|
|
6
6
|
Author-email: hjyang@nkia.co.kr
|
|
@@ -9,3 +9,8 @@ Classifier: Programming Language :: Python :: 3
|
|
|
9
9
|
Classifier: Programming Language :: Python :: 3.10
|
|
10
10
|
Classifier: Programming Language :: Python :: 3.11
|
|
11
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Provides-Extra: deploy
|
|
13
|
+
Provides-Extra: metricanomaly
|
|
14
|
+
Provides-Extra: processrca
|
|
15
|
+
Provides-Extra: staticthreshold
|
|
16
|
+
Provides-Extra: threcommender
|
|
@@ -0,0 +1,93 @@
|
|
|
1
|
+
[tool.poetry]
|
|
2
|
+
name = "nkia-ai-dependency"
|
|
3
|
+
version = "0.8.0"
|
|
4
|
+
description = "NKIA AI Shared Dependency"
|
|
5
|
+
authors = ["hjyang <hjyang@nkia.co.kr>"]
|
|
6
|
+
|
|
7
|
+
[tool.poetry.dependencies]
|
|
8
|
+
python = "^3.10"
|
|
9
|
+
|
|
10
|
+
[tool.poetry.group.all]
|
|
11
|
+
optional = true
|
|
12
|
+
|
|
13
|
+
[tool.poetry.group.all.dependencies]
|
|
14
|
+
pandas = "2.2.2"
|
|
15
|
+
numpy = "1.26.4"
|
|
16
|
+
statsmodels = "0.14.1"
|
|
17
|
+
more-itertools = "10.2.0"
|
|
18
|
+
pytimekr = "0.1.0"
|
|
19
|
+
scipy = "1.13.0"
|
|
20
|
+
scikit-learn = "1.3.2"
|
|
21
|
+
pytz = "2024.1"
|
|
22
|
+
pytest = "8.3.2"
|
|
23
|
+
networkx = "3.1"
|
|
24
|
+
seaborn = "0.13.2"
|
|
25
|
+
fastapi = "0.109.2"
|
|
26
|
+
gunicorn = "21.2.0"
|
|
27
|
+
uvicorn = "0.27.1"
|
|
28
|
+
httpx = "0.25.2"
|
|
29
|
+
python-dotenv = "1.0.1"
|
|
30
|
+
pydantic = "2.11.4"
|
|
31
|
+
aiohttp = "3.9.3"
|
|
32
|
+
redis = "3.5.3"
|
|
33
|
+
redis-py-cluster = "2.1.3"
|
|
34
|
+
cassandra-driver = "3.29.0"
|
|
35
|
+
elasticsearch = "7.15.1"
|
|
36
|
+
pymongo = "4.12.1"
|
|
37
|
+
|
|
38
|
+
[tool.poetry.extras]
|
|
39
|
+
metricanomaly = [
|
|
40
|
+
"pandas",
|
|
41
|
+
"numpy",
|
|
42
|
+
"statsmodels",
|
|
43
|
+
"more-itertools",
|
|
44
|
+
"pytimekr",
|
|
45
|
+
"scipy",
|
|
46
|
+
"scikit-learn",
|
|
47
|
+
"pytz",
|
|
48
|
+
"pytest"
|
|
49
|
+
]
|
|
50
|
+
processrca = [
|
|
51
|
+
"pandas",
|
|
52
|
+
"numpy",
|
|
53
|
+
"networkx",
|
|
54
|
+
"scipy",
|
|
55
|
+
"statsmodels",
|
|
56
|
+
"scikit-learn",
|
|
57
|
+
"pytest"
|
|
58
|
+
]
|
|
59
|
+
threcommender = [
|
|
60
|
+
"pandas",
|
|
61
|
+
"numpy",
|
|
62
|
+
"more-itertools",
|
|
63
|
+
"scipy",
|
|
64
|
+
"seaborn",
|
|
65
|
+
"pytest"
|
|
66
|
+
]
|
|
67
|
+
staticthreshold = [
|
|
68
|
+
"pandas",
|
|
69
|
+
"numpy",
|
|
70
|
+
"more-itertools",
|
|
71
|
+
"pytest"
|
|
72
|
+
]
|
|
73
|
+
deploy = [
|
|
74
|
+
"fastapi",
|
|
75
|
+
"gunicorn",
|
|
76
|
+
"uvicorn",
|
|
77
|
+
"httpx",
|
|
78
|
+
"pandas",
|
|
79
|
+
"numpy",
|
|
80
|
+
"python-dotenv",
|
|
81
|
+
"pydantic",
|
|
82
|
+
"aiohttp",
|
|
83
|
+
"redis",
|
|
84
|
+
"redis-py-cluster",
|
|
85
|
+
"cassandra-driver",
|
|
86
|
+
"elasticsearch",
|
|
87
|
+
"pymongo",
|
|
88
|
+
"pytest"
|
|
89
|
+
]
|
|
90
|
+
|
|
91
|
+
[build-system]
|
|
92
|
+
requires = ["poetry-core"]
|
|
93
|
+
build-backend = "poetry.core.masonry.api"
|
|
@@ -1,80 +0,0 @@
|
|
|
1
|
-
[tool.poetry]
|
|
2
|
-
name = "nkia-ai-dependency"
|
|
3
|
-
version = "0.7.0"
|
|
4
|
-
description = "NKIA AI Shared Dependency"
|
|
5
|
-
authors = ["hjyang <hjyang@nkia.co.kr>"]
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
[tool.poetry.dependencies]
|
|
9
|
-
python = "^3.10"
|
|
10
|
-
|
|
11
|
-
[tool.poetry.group.metricanomaly]
|
|
12
|
-
optional = true
|
|
13
|
-
|
|
14
|
-
[tool.poetry.group.processrca]
|
|
15
|
-
optional = true
|
|
16
|
-
|
|
17
|
-
[tool.poetry.group.threcommender]
|
|
18
|
-
optional = true
|
|
19
|
-
|
|
20
|
-
[tool.poetry.group.staticthreshold]
|
|
21
|
-
optional = true
|
|
22
|
-
|
|
23
|
-
[tool.poetry.group.deploy]
|
|
24
|
-
optional = true
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
[tool.poetry.group.metricanomaly.dependencies]
|
|
28
|
-
pandas = "2.2.2"
|
|
29
|
-
numpy = "1.26.4"
|
|
30
|
-
statsmodels = "0.14.1"
|
|
31
|
-
more-itertools = "10.2.0"
|
|
32
|
-
pytimekr = "0.1.0"
|
|
33
|
-
scipy = "1.13.0"
|
|
34
|
-
scikit-learn = "1.3.2"
|
|
35
|
-
pytz = "2024.1"
|
|
36
|
-
pytest = "8.3.2"
|
|
37
|
-
|
|
38
|
-
[tool.poetry.group.processrca.dependencies]
|
|
39
|
-
pandas = "2.2.2"
|
|
40
|
-
numpy = "1.26.4"
|
|
41
|
-
networkx = "3.1"
|
|
42
|
-
scipy = "1.13.0"
|
|
43
|
-
statsmodels = "0.14.1"
|
|
44
|
-
scikit-learn = "1.3.2"
|
|
45
|
-
pytest = "8.3.2"
|
|
46
|
-
|
|
47
|
-
[tool.poetry.group.threcommender.dependencies]
|
|
48
|
-
pandas = "2.2.2"
|
|
49
|
-
numpy = "1.26.4"
|
|
50
|
-
more-itertools = "10.2.0"
|
|
51
|
-
scipy = "1.13.0"
|
|
52
|
-
seaborn = "0.13.2"
|
|
53
|
-
pytest = "8.3.2"
|
|
54
|
-
|
|
55
|
-
[tool.poetry.group.staticthreshold.dependencies]
|
|
56
|
-
pandas = "2.2.2"
|
|
57
|
-
numpy = "1.26.4"
|
|
58
|
-
more-itertools = "10.2.0"
|
|
59
|
-
pytest = "8.3.2"
|
|
60
|
-
|
|
61
|
-
[tool.poetry.group.deploy.dependencies]
|
|
62
|
-
fastapi = "0.109.2"
|
|
63
|
-
gunicorn = "21.2.0"
|
|
64
|
-
uvicorn = "0.27.1"
|
|
65
|
-
httpx = "0.25.2"
|
|
66
|
-
pandas = "2.2.2"
|
|
67
|
-
numpy = "1.26.4"
|
|
68
|
-
python-dotenv = "1.0.1"
|
|
69
|
-
pydantic = "2.11.4"
|
|
70
|
-
aiohttp = "3.9.3"
|
|
71
|
-
redis = "3.5.3"
|
|
72
|
-
redis-py-cluster = "2.1.3"
|
|
73
|
-
cassandra-driver = "3.29.0"
|
|
74
|
-
elasticsearch = "7.15.1"
|
|
75
|
-
pymongo = "4.12.1"
|
|
76
|
-
pytest = "8.3.2"
|
|
77
|
-
|
|
78
|
-
[build-system]
|
|
79
|
-
requires = ["poetry-core"]
|
|
80
|
-
build-backend = "poetry.core.masonry.api"
|
|
File without changes
|