yeonjae-universal-schedule-manager 1.0.3__tar.gz → 1.0.5__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.
- {yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/PKG-INFO +2 -2
- yeonjae_universal_schedule_manager-1.0.5/README.md +9 -0
- {yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/pyproject.toml +3 -3
- {yeonjae_universal_schedule_manager-1.0.3/src/universal_schedule_manager → yeonjae_universal_schedule_manager-1.0.5/src/yeonjae_universal_schedule_manager}/tasks.py +6 -6
- {yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/src/yeonjae_universal_schedule_manager.egg-info/PKG-INFO +2 -2
- {yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/src/yeonjae_universal_schedule_manager.egg-info/SOURCES.txt +5 -5
- yeonjae_universal_schedule_manager-1.0.5/src/yeonjae_universal_schedule_manager.egg-info/top_level.txt +1 -0
- {yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/tests/test_basic.py +6 -6
- yeonjae_universal_schedule_manager-1.0.3/README.md +0 -9
- yeonjae_universal_schedule_manager-1.0.3/src/yeonjae_universal_schedule_manager.egg-info/top_level.txt +0 -1
- {yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/setup.cfg +0 -0
- {yeonjae_universal_schedule_manager-1.0.3/src/universal_schedule_manager → yeonjae_universal_schedule_manager-1.0.5/src/yeonjae_universal_schedule_manager}/__init__.py +0 -0
- {yeonjae_universal_schedule_manager-1.0.3/src/universal_schedule_manager → yeonjae_universal_schedule_manager-1.0.5/src/yeonjae_universal_schedule_manager}/exceptions.py +0 -0
- {yeonjae_universal_schedule_manager-1.0.3/src/universal_schedule_manager → yeonjae_universal_schedule_manager-1.0.5/src/yeonjae_universal_schedule_manager}/models.py +0 -0
- {yeonjae_universal_schedule_manager-1.0.3/src/universal_schedule_manager → yeonjae_universal_schedule_manager-1.0.5/src/yeonjae_universal_schedule_manager}/service.py +0 -0
- {yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/src/yeonjae_universal_schedule_manager.egg-info/dependency_links.txt +0 -0
- {yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/src/yeonjae_universal_schedule_manager.egg-info/requires.txt +0 -0
{yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/PKG-INFO
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: yeonjae-universal-schedule-manager
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.5
|
4
4
|
Summary: Universal schedule manager module for job scheduling and execution
|
5
5
|
Author-email: Yeonjae <dev@example.com>
|
6
6
|
License: MIT
|
@@ -35,5 +35,5 @@ Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
35
35
|
## 설치
|
36
36
|
|
37
37
|
```bash
|
38
|
-
pip install
|
38
|
+
pip install yeonjae-universal-schedule-manager
|
39
39
|
```
|
{yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/pyproject.toml
RENAMED
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
4
4
|
|
5
5
|
[project]
|
6
6
|
name = "yeonjae-universal-schedule-manager"
|
7
|
-
version = "1.0.
|
7
|
+
version = "1.0.5"
|
8
8
|
description = "Universal schedule manager module for job scheduling and execution"
|
9
9
|
authors = [{name = "Yeonjae", email = "dev@example.com"}]
|
10
10
|
license = {text = "MIT"}
|
@@ -45,7 +45,7 @@ Issues = "https://github.com/yeonjae/universal-modules/issues"
|
|
45
45
|
where = ["src"]
|
46
46
|
|
47
47
|
[tool.setuptools.package-data]
|
48
|
-
|
48
|
+
yeonjae_universal_schedule_manager = ["py.typed"]
|
49
49
|
|
50
50
|
[tool.pytest.ini_options]
|
51
51
|
testpaths = ["tests"]
|
@@ -55,7 +55,7 @@ python_functions = ["test_*"]
|
|
55
55
|
addopts = "-v --tb=short"
|
56
56
|
|
57
57
|
[tool.coverage.run]
|
58
|
-
source = ["src/
|
58
|
+
source = ["src/yeonjae_universal_schedule_manager"]
|
59
59
|
omit = ["tests/*"]
|
60
60
|
|
61
61
|
[tool.coverage.report]
|
@@ -8,11 +8,11 @@ from typing import Dict, Any
|
|
8
8
|
|
9
9
|
from celery import shared_task
|
10
10
|
|
11
|
-
from
|
12
|
-
from
|
13
|
-
from
|
14
|
-
from
|
15
|
-
from
|
11
|
+
from yeonjae_universal_data_retriever.service import DataRetrieverService
|
12
|
+
from yeonjae_universal_llm_service import LLMService, LLMInput, LLMProvider, ModelConfig
|
13
|
+
from yeonjae_universal_data_aggregator.service import DataAggregatorService
|
14
|
+
from yeonjae_universal_prompt_builder.service import PromptBuilderService
|
15
|
+
from yeonjae_universal_notification_service import NotificationService
|
16
16
|
# Simplified logging for standalone operation
|
17
17
|
def log_module_io(module_name: str, operation: str, data: dict):
|
18
18
|
pass
|
@@ -81,7 +81,7 @@ def daily_summary_task() -> Dict[str, Any]:
|
|
81
81
|
logger.info("🔢 DataAggregator: Starting data aggregation")
|
82
82
|
|
83
83
|
# 데이터를 AggregationInput 형태로 변환
|
84
|
-
from
|
84
|
+
from yeonjae_universal_data_aggregator.models import AggregationInput, CommitData, DiffInfo, DateRange
|
85
85
|
|
86
86
|
commits = []
|
87
87
|
for commit_info in retrieved_data.commits:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: yeonjae-universal-schedule-manager
|
3
|
-
Version: 1.0.
|
3
|
+
Version: 1.0.5
|
4
4
|
Summary: Universal schedule manager module for job scheduling and execution
|
5
5
|
Author-email: Yeonjae <dev@example.com>
|
6
6
|
License: MIT
|
@@ -35,5 +35,5 @@ Requires-Dist: mypy>=1.0.0; extra == "dev"
|
|
35
35
|
## 설치
|
36
36
|
|
37
37
|
```bash
|
38
|
-
pip install
|
38
|
+
pip install yeonjae-universal-schedule-manager
|
39
39
|
```
|
@@ -1,10 +1,10 @@
|
|
1
1
|
README.md
|
2
2
|
pyproject.toml
|
3
|
-
src/
|
4
|
-
src/
|
5
|
-
src/
|
6
|
-
src/
|
7
|
-
src/
|
3
|
+
src/yeonjae_universal_schedule_manager/__init__.py
|
4
|
+
src/yeonjae_universal_schedule_manager/exceptions.py
|
5
|
+
src/yeonjae_universal_schedule_manager/models.py
|
6
|
+
src/yeonjae_universal_schedule_manager/service.py
|
7
|
+
src/yeonjae_universal_schedule_manager/tasks.py
|
8
8
|
src/yeonjae_universal_schedule_manager.egg-info/PKG-INFO
|
9
9
|
src/yeonjae_universal_schedule_manager.egg-info/SOURCES.txt
|
10
10
|
src/yeonjae_universal_schedule_manager.egg-info/dependency_links.txt
|
@@ -0,0 +1 @@
|
|
1
|
+
yeonjae_universal_schedule_manager
|
@@ -10,7 +10,7 @@ from datetime import datetime, timedelta
|
|
10
10
|
|
11
11
|
def test_models_import():
|
12
12
|
"""모델 임포트 테스트"""
|
13
|
-
from
|
13
|
+
from yeonjae_universal_schedule_manager.models import (
|
14
14
|
ScheduleType, ScheduleStatus, ScheduleConfig,
|
15
15
|
ScheduleRequest, ScheduleResponse, JobExecution
|
16
16
|
)
|
@@ -25,7 +25,7 @@ def test_models_import():
|
|
25
25
|
|
26
26
|
def test_exceptions_import():
|
27
27
|
"""예외 클래스 임포트 테스트"""
|
28
|
-
from
|
28
|
+
from yeonjae_universal_schedule_manager.exceptions import (
|
29
29
|
ScheduleManagerException,
|
30
30
|
InvalidScheduleException,
|
31
31
|
JobExecutionException
|
@@ -38,7 +38,7 @@ def test_exceptions_import():
|
|
38
38
|
|
39
39
|
def test_schedule_config_creation():
|
40
40
|
"""ScheduleConfig 생성 테스트"""
|
41
|
-
from
|
41
|
+
from yeonjae_universal_schedule_manager.models import ScheduleConfig, ScheduleType
|
42
42
|
|
43
43
|
config = ScheduleConfig(
|
44
44
|
schedule_type=ScheduleType.CRON,
|
@@ -53,7 +53,7 @@ def test_schedule_config_creation():
|
|
53
53
|
|
54
54
|
def test_schedule_request_creation():
|
55
55
|
"""ScheduleRequest 생성 테스트"""
|
56
|
-
from
|
56
|
+
from yeonjae_universal_schedule_manager.models import ScheduleRequest, ScheduleType, ScheduleConfig
|
57
57
|
|
58
58
|
request = ScheduleRequest(
|
59
59
|
name="daily_report",
|
@@ -73,7 +73,7 @@ def test_schedule_request_creation():
|
|
73
73
|
|
74
74
|
def test_job_execution_creation():
|
75
75
|
"""JobExecution 생성 테스트"""
|
76
|
-
from
|
76
|
+
from yeonjae_universal_schedule_manager.models import JobExecution
|
77
77
|
|
78
78
|
execution = JobExecution(
|
79
79
|
job_id="job_123",
|
@@ -89,7 +89,7 @@ def test_job_execution_creation():
|
|
89
89
|
|
90
90
|
def test_exception_creation():
|
91
91
|
"""예외 생성 테스트"""
|
92
|
-
from
|
92
|
+
from yeonjae_universal_schedule_manager.exceptions import InvalidScheduleException
|
93
93
|
|
94
94
|
exception = InvalidScheduleException("invalid_cron", "0 25 * * *")
|
95
95
|
|
@@ -1 +0,0 @@
|
|
1
|
-
universal_schedule_manager
|
{yeonjae_universal_schedule_manager-1.0.3 → yeonjae_universal_schedule_manager-1.0.5}/setup.cfg
RENAMED
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|