nkia-ai-dependency 0.7.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,11 +0,0 @@
1
- Metadata-Version: 2.1
2
- Name: nkia-ai-dependency
3
- Version: 0.7.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
@@ -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"