indiciumforge-cli 2.0.0__tar.gz → 2.0.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.
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/PKG-INFO +24 -8
- indiciumforge_cli-2.0.1/README.md +33 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/pyproject.toml +3 -3
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/PKG-INFO +24 -8
- indiciumforge_cli-2.0.0/README.md +0 -17
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/setup.cfg +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli/__init__.py +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli/artifact.py +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli/daily_review.py +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli/factor.py +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli/main.py +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli/parity.py +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli/provider.py +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli/synthetic_e2e.py +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli/workflow_chain.py +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/SOURCES.txt +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/dependency_links.txt +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/entry_points.txt +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/requires.txt +0 -0
- {indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/top_level.txt +0 -0
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: indiciumforge-cli
|
|
3
|
-
Version: 2.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 2.0.1
|
|
4
|
+
Summary: CLI for IndiciumForge reproducible financial research workflows.
|
|
5
5
|
Author: IndiciumForge contributors
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/Cavaradossi/indiciumforge
|
|
@@ -9,7 +9,7 @@ Project-URL: Repository, https://github.com/Cavaradossi/indiciumforge
|
|
|
9
9
|
Project-URL: Documentation, https://github.com/Cavaradossi/indiciumforge/tree/master/docs
|
|
10
10
|
Project-URL: Issues, https://github.com/Cavaradossi/indiciumforge/issues
|
|
11
11
|
Project-URL: Changelog, https://github.com/Cavaradossi/indiciumforge/blob/master/RELEASE_NOTES.md
|
|
12
|
-
Keywords:
|
|
12
|
+
Keywords: financial-research,workflow,artifacts,open-core,reproducibility
|
|
13
13
|
Classifier: Development Status :: 4 - Beta
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Intended Audience :: Science/Research
|
|
@@ -27,18 +27,34 @@ Requires-Dist: typer>=0.9
|
|
|
27
27
|
|
|
28
28
|
# indiciumforge-cli
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
**IndiciumForge is an open-core toolkit for reproducible financial research workflows.**
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
This package provides the **`indiciumforge` CLI** for running workflow chains, checking output completeness, inspecting demo providers, and comparing runs against reference fixtures.
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
**Not a trading system, broker gateway, or investment advice.**
|
|
35
35
|
|
|
36
36
|
## Install
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
```bash
|
|
39
|
+
pip install indiciumforge-cli==2.0.1
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
This pulls `indiciumforge-workflow` and `indiciumforge-core` as dependencies.
|
|
43
|
+
|
|
44
|
+
Monorepo development:
|
|
39
45
|
|
|
40
46
|
```bash
|
|
41
47
|
pip install -e packages/indiciumforge-core -e packages/indiciumforge-workflow -e packages/indiciumforge-cli
|
|
42
48
|
```
|
|
43
49
|
|
|
44
|
-
|
|
50
|
+
## Quick smoke
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
indiciumforge --help
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## More documentation
|
|
57
|
+
|
|
58
|
+
- [Repository README](https://github.com/Cavaradossi/indiciumforge/blob/master/README.md)
|
|
59
|
+
- [中文说明](https://github.com/Cavaradossi/indiciumforge/blob/master/README_CN.md)
|
|
60
|
+
- [Glossary](https://github.com/Cavaradossi/indiciumforge/blob/master/docs/GLOSSARY.md)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# indiciumforge-cli
|
|
2
|
+
|
|
3
|
+
**IndiciumForge is an open-core toolkit for reproducible financial research workflows.**
|
|
4
|
+
|
|
5
|
+
This package provides the **`indiciumforge` CLI** for running workflow chains, checking output completeness, inspecting demo providers, and comparing runs against reference fixtures.
|
|
6
|
+
|
|
7
|
+
**Not a trading system, broker gateway, or investment advice.**
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install indiciumforge-cli==2.0.1
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
This pulls `indiciumforge-workflow` and `indiciumforge-core` as dependencies.
|
|
16
|
+
|
|
17
|
+
Monorepo development:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
pip install -e packages/indiciumforge-core -e packages/indiciumforge-workflow -e packages/indiciumforge-cli
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
## Quick smoke
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
indiciumforge --help
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## More documentation
|
|
30
|
+
|
|
31
|
+
- [Repository README](https://github.com/Cavaradossi/indiciumforge/blob/master/README.md)
|
|
32
|
+
- [中文说明](https://github.com/Cavaradossi/indiciumforge/blob/master/README_CN.md)
|
|
33
|
+
- [Glossary](https://github.com/Cavaradossi/indiciumforge/blob/master/docs/GLOSSARY.md)
|
|
@@ -4,13 +4,13 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "indiciumforge-cli"
|
|
7
|
-
version = "2.0.
|
|
8
|
-
description = "
|
|
7
|
+
version = "2.0.1"
|
|
8
|
+
description = "CLI for IndiciumForge reproducible financial research workflows."
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
license = "Apache-2.0"
|
|
11
11
|
requires-python = ">=3.10"
|
|
12
12
|
authors = [{ name = "IndiciumForge contributors" }]
|
|
13
|
-
keywords = ["
|
|
13
|
+
keywords = ["financial-research", "workflow", "artifacts", "open-core", "reproducibility"]
|
|
14
14
|
classifiers = [
|
|
15
15
|
"Development Status :: 4 - Beta",
|
|
16
16
|
"Intended Audience :: Developers",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: indiciumforge-cli
|
|
3
|
-
Version: 2.0.
|
|
4
|
-
Summary:
|
|
3
|
+
Version: 2.0.1
|
|
4
|
+
Summary: CLI for IndiciumForge reproducible financial research workflows.
|
|
5
5
|
Author: IndiciumForge contributors
|
|
6
6
|
License-Expression: Apache-2.0
|
|
7
7
|
Project-URL: Homepage, https://github.com/Cavaradossi/indiciumforge
|
|
@@ -9,7 +9,7 @@ Project-URL: Repository, https://github.com/Cavaradossi/indiciumforge
|
|
|
9
9
|
Project-URL: Documentation, https://github.com/Cavaradossi/indiciumforge/tree/master/docs
|
|
10
10
|
Project-URL: Issues, https://github.com/Cavaradossi/indiciumforge/issues
|
|
11
11
|
Project-URL: Changelog, https://github.com/Cavaradossi/indiciumforge/blob/master/RELEASE_NOTES.md
|
|
12
|
-
Keywords:
|
|
12
|
+
Keywords: financial-research,workflow,artifacts,open-core,reproducibility
|
|
13
13
|
Classifier: Development Status :: 4 - Beta
|
|
14
14
|
Classifier: Intended Audience :: Developers
|
|
15
15
|
Classifier: Intended Audience :: Science/Research
|
|
@@ -27,18 +27,34 @@ Requires-Dist: typer>=0.9
|
|
|
27
27
|
|
|
28
28
|
# indiciumforge-cli
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
**IndiciumForge is an open-core toolkit for reproducible financial research workflows.**
|
|
31
31
|
|
|
32
|
-
|
|
32
|
+
This package provides the **`indiciumforge` CLI** for running workflow chains, checking output completeness, inspecting demo providers, and comparing runs against reference fixtures.
|
|
33
33
|
|
|
34
|
-
|
|
34
|
+
**Not a trading system, broker gateway, or investment advice.**
|
|
35
35
|
|
|
36
36
|
## Install
|
|
37
37
|
|
|
38
|
-
|
|
38
|
+
```bash
|
|
39
|
+
pip install indiciumforge-cli==2.0.1
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
This pulls `indiciumforge-workflow` and `indiciumforge-core` as dependencies.
|
|
43
|
+
|
|
44
|
+
Monorepo development:
|
|
39
45
|
|
|
40
46
|
```bash
|
|
41
47
|
pip install -e packages/indiciumforge-core -e packages/indiciumforge-workflow -e packages/indiciumforge-cli
|
|
42
48
|
```
|
|
43
49
|
|
|
44
|
-
|
|
50
|
+
## Quick smoke
|
|
51
|
+
|
|
52
|
+
```bash
|
|
53
|
+
indiciumforge --help
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
## More documentation
|
|
57
|
+
|
|
58
|
+
- [Repository README](https://github.com/Cavaradossi/indiciumforge/blob/master/README.md)
|
|
59
|
+
- [中文说明](https://github.com/Cavaradossi/indiciumforge/blob/master/README_CN.md)
|
|
60
|
+
- [Glossary](https://github.com/Cavaradossi/indiciumforge/blob/master/docs/GLOSSARY.md)
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
# indiciumforge-cli
|
|
2
|
-
|
|
3
|
-
Reference CLI for [IndiciumForge](https://github.com/Cavaradossi/indiciumforge).
|
|
4
|
-
|
|
5
|
-
Entry point: `indiciumforge` — workflow, artifact audit, factor scan, provider inspect, parity harness.
|
|
6
|
-
|
|
7
|
-
Research audit only — not investment advice, not broker execution.
|
|
8
|
-
|
|
9
|
-
## Install
|
|
10
|
-
|
|
11
|
-
PyPI publish is pending. Install from the monorepo:
|
|
12
|
-
|
|
13
|
-
```bash
|
|
14
|
-
pip install -e packages/indiciumforge-core -e packages/indiciumforge-workflow -e packages/indiciumforge-cli
|
|
15
|
-
```
|
|
16
|
-
|
|
17
|
-
See [docs/PYPI_RELEASE_CHECKLIST.md](https://github.com/Cavaradossi/indiciumforge/blob/master/docs/PYPI_RELEASE_CHECKLIST.md).
|
|
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
|
{indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/entry_points.txt
RENAMED
|
File without changes
|
{indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/requires.txt
RENAMED
|
File without changes
|
{indiciumforge_cli-2.0.0 → indiciumforge_cli-2.0.1}/src/indiciumforge_cli.egg-info/top_level.txt
RENAMED
|
File without changes
|