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