liquidator-indicator 0.0.4__tar.gz → 0.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.
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/PKG-INFO +4 -3
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/liquidator_indicator.egg-info/PKG-INFO +4 -3
- liquidator_indicator-0.0.5/liquidator_indicator.egg-info/requires.txt +5 -0
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/pyproject.toml +4 -3
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/setup.cfg +4 -3
- liquidator_indicator-0.0.4/liquidator_indicator.egg-info/requires.txt +0 -2
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/LICENSE +0 -0
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/README.md +0 -0
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/liquidator_indicator.egg-info/SOURCES.txt +0 -0
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/liquidator_indicator.egg-info/dependency_links.txt +0 -0
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/liquidator_indicator.egg-info/top_level.txt +0 -0
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/tests/test_core.py +0 -0
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/tests/test_indicators_parsers.py +0 -0
- {liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/tests/test_zones_integration.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: liquidator_indicator
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: Lightweight liquidation zone indicator with multi-signal detection and visual chart integration
|
|
5
5
|
Home-page: https://github.com/ViWarshawski/liquidator_indicator
|
|
6
6
|
Author: ViWarshawski
|
|
@@ -18,8 +18,9 @@ Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
|
18
18
|
Requires-Python: >=3.9
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: pandas
|
|
22
|
-
Requires-Dist: numpy
|
|
21
|
+
Requires-Dist: pandas>=1.3.0
|
|
22
|
+
Requires-Dist: numpy>=1.20.0
|
|
23
|
+
Requires-Dist: numba>=0.56.0; python_version >= "3.9"
|
|
23
24
|
Dynamic: license-file
|
|
24
25
|
|
|
25
26
|
# liquidator_indicator
|
{liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/liquidator_indicator.egg-info/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: liquidator_indicator
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.5
|
|
4
4
|
Summary: Lightweight liquidation zone indicator with multi-signal detection and visual chart integration
|
|
5
5
|
Home-page: https://github.com/ViWarshawski/liquidator_indicator
|
|
6
6
|
Author: ViWarshawski
|
|
@@ -18,8 +18,9 @@ Classifier: Topic :: Office/Business :: Financial :: Investment
|
|
|
18
18
|
Requires-Python: >=3.9
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: LICENSE
|
|
21
|
-
Requires-Dist: pandas
|
|
22
|
-
Requires-Dist: numpy
|
|
21
|
+
Requires-Dist: pandas>=1.3.0
|
|
22
|
+
Requires-Dist: numpy>=1.20.0
|
|
23
|
+
Requires-Dist: numba>=0.56.0; python_version >= "3.9"
|
|
23
24
|
Dynamic: license-file
|
|
24
25
|
|
|
25
26
|
# liquidator_indicator
|
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
[project]
|
|
2
2
|
name = "liquidator_indicator"
|
|
3
|
-
version = "0.0.
|
|
3
|
+
version = "0.0.5"
|
|
4
4
|
description = "Lightweight liquidation zone indicator with multi-signal detection and visual chart integration"
|
|
5
5
|
license = {text = "MIT"}
|
|
6
6
|
requires-python = ">=3.9"
|
|
7
7
|
dependencies = [
|
|
8
|
-
"pandas
|
|
9
|
-
"numpy
|
|
8
|
+
"pandas>=1.3.0",
|
|
9
|
+
"numpy>=1.20.0",
|
|
10
|
+
"numba>=0.56.0; python_version>='3.9'"
|
|
10
11
|
]
|
|
11
12
|
readme = "README.md"
|
|
12
13
|
keywords = ["trading", "liquidation", "zones", "cryptocurrency", "technical-analysis"]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = liquidator_indicator
|
|
3
|
-
version = 0.0.
|
|
3
|
+
version = 0.0.5
|
|
4
4
|
author = ViWarshawski
|
|
5
5
|
author_email = nexus2.0.2026@gmail.com
|
|
6
6
|
description = Lightweight liquidation zone indicator with multi-signal detection and visual chart integration
|
|
@@ -23,8 +23,9 @@ classifiers =
|
|
|
23
23
|
packages = find:
|
|
24
24
|
python_requires = >=3.9
|
|
25
25
|
install_requires =
|
|
26
|
-
pandas
|
|
27
|
-
numpy
|
|
26
|
+
pandas>=1.3.0
|
|
27
|
+
numpy>=1.20.0
|
|
28
|
+
numba>=0.56.0; python_version>='3.9'
|
|
28
29
|
|
|
29
30
|
[egg_info]
|
|
30
31
|
tag_build =
|
|
File without changes
|
|
File without changes
|
{liquidator_indicator-0.0.4 → liquidator_indicator-0.0.5}/liquidator_indicator.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|