analyser_hj3415 4.2.7__tar.gz → 4.2.8__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.
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/PKG-INFO +2 -1
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/pyproject.toml +2 -1
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/README.md +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/__init__.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/__init__.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/eval/__init__.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/eval/blue.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/eval/common.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/eval/growth.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/eval/mil.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/eval/red.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/tsa/__init__.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/tsa/common.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/tsa/lstm.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/analyser/tsa/prophet.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/analyser_hj3415/cli.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/archive/deprecated/compile.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/archive/deprecated/compile2.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/archive/deprecated/lstm.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/archive/deprecated/prophet.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/archive/deprecated/test_compile.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/archive/workroom/mysklearn.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/archive/workroom/mysklearn2.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/archive/workroom/score.py +0 -0
- {analyser_hj3415-4.2.7 → analyser_hj3415-4.2.8}/archive/workroom/trash.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: analyser_hj3415
|
3
|
-
Version: 4.2.
|
3
|
+
Version: 4.2.8
|
4
4
|
Summary: Stock analyser and database processing programs
|
5
5
|
Requires-Python: >=3.6
|
6
6
|
Description-Content-Type: text/markdown
|
@@ -12,6 +12,7 @@ Requires-Dist: yfinance>=0.2.44
|
|
12
12
|
Requires-Dist: prophet>=1.1.6
|
13
13
|
Requires-Dist: kaleido>=0.2.1
|
14
14
|
Requires-Dist: matplotlib>=3.9.2
|
15
|
+
Requires-Dist: marshmallow>=3.26.0
|
15
16
|
Requires-Dist: tensorflow-macos>=2.16.2; platform_machine == 'arm64' and sys_platform == 'darwin'
|
16
17
|
Requires-Dist: tensorflow-metal>=0.5.0; platform_machine == 'arm64' and sys_platform == 'darwin'
|
17
18
|
Requires-Dist: tensorflow>=2.18.0; platform_machine != 'arm64' or sys_platform != 'darwin'
|
@@ -5,7 +5,7 @@ build-backend = "flit_core.buildapi"
|
|
5
5
|
|
6
6
|
[project]
|
7
7
|
name = "analyser_hj3415"
|
8
|
-
version = "4.2.
|
8
|
+
version = "4.2.8"
|
9
9
|
description = "Stock analyser and database processing programs"
|
10
10
|
readme = "README.md"
|
11
11
|
requires-python = ">=3.6"
|
@@ -28,6 +28,7 @@ dependencies = [
|
|
28
28
|
"prophet>=1.1.6",
|
29
29
|
"kaleido>=0.2.1", #plotly로 이미지출력위해
|
30
30
|
"matplotlib>=3.9.2",
|
31
|
+
"marshmallow>=3.26.0",
|
31
32
|
# Apple Silicon (ARM, macOS)에서 tensorflow-macos 사용
|
32
33
|
"tensorflow-macos>=2.16.2; platform_machine == 'arm64' and sys_platform == 'darwin'",
|
33
34
|
"tensorflow-metal>=0.5.0; platform_machine == 'arm64' and sys_platform == 'darwin'",
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|