cogniflow 0.1.0__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.
- cogniflow-0.1.0/PKG-INFO +71 -0
- cogniflow-0.1.0/README.md +60 -0
- cogniflow-0.1.0/pyproject.toml +26 -0
- cogniflow-0.1.0/setup.cfg +4 -0
- cogniflow-0.1.0/src/cogniflow/__init__.py +3 -0
- cogniflow-0.1.0/src/cogniflow.egg-info/PKG-INFO +71 -0
- cogniflow-0.1.0/src/cogniflow.egg-info/SOURCES.txt +9 -0
- cogniflow-0.1.0/src/cogniflow.egg-info/dependency_links.txt +1 -0
- cogniflow-0.1.0/src/cogniflow.egg-info/requires.txt +5 -0
- cogniflow-0.1.0/src/cogniflow.egg-info/top_level.txt +1 -0
- cogniflow-0.1.0/tests/test_distribution_metadata.py +8 -0
cogniflow-0.1.0/PKG-INFO
ADDED
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cogniflow
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Public Cogniflow distribution that installs the cf CLI and setup orchestration
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: cf-core-cli>=0.1.5
|
|
8
|
+
Requires-Dist: cf-setup>=0.1.0
|
|
9
|
+
Provides-Extra: test
|
|
10
|
+
Requires-Dist: pytest>=8.0; extra == "test"
|
|
11
|
+
|
|
12
|
+
# cogniflow
|
|
13
|
+
|
|
14
|
+
Public Cogniflow distribution for end users.
|
|
15
|
+
|
|
16
|
+
Install:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install cogniflow
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
This package does not implement a second CLI. It depends on:
|
|
23
|
+
|
|
24
|
+
- `cf-core-cli`, which provides the `cf` command
|
|
25
|
+
- `cf-setup`, which powers `cf install`
|
|
26
|
+
|
|
27
|
+
Typical public flow:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install cogniflow
|
|
31
|
+
cf install
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Repository developers should continue to use:
|
|
35
|
+
|
|
36
|
+
```powershell
|
|
37
|
+
.\scripts\fresh_install_v2.ps1
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Publishing
|
|
41
|
+
|
|
42
|
+
`cogniflow` is the public metapackage at the end of the release chain:
|
|
43
|
+
|
|
44
|
+
- Workflow: `.github/workflows/cogniflow_windows_publish.yml`
|
|
45
|
+
- Package directory: `sandcastle/cogniflow`
|
|
46
|
+
- PyPI tag: `cogniflow-v<version>`
|
|
47
|
+
- TestPyPI tag: `cogniflow-v<version>-test`
|
|
48
|
+
- Release order: publish `cf-core-cli 0.1.5` first, then `cf-setup`, then `cogniflow`
|
|
49
|
+
|
|
50
|
+
Local preflight:
|
|
51
|
+
|
|
52
|
+
```powershell
|
|
53
|
+
powershell -ExecutionPolicy Bypass -File scripts/mimic_windows_python_publish_workflow.ps1 `
|
|
54
|
+
-WorkflowFile .github/workflows/cogniflow_windows_publish.yml `
|
|
55
|
+
-PackageDir sandcastle/cogniflow `
|
|
56
|
+
-PythonExe py `
|
|
57
|
+
-PythonVersion 3.14
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Queue a dry-run dispatch:
|
|
61
|
+
|
|
62
|
+
```powershell
|
|
63
|
+
powershell -ExecutionPolicy Bypass -File scripts/queue_windows_python_publish_workflow.ps1 `
|
|
64
|
+
-WorkflowFile .github/workflows/cogniflow_windows_publish.yml `
|
|
65
|
+
-PackageDir sandcastle/cogniflow `
|
|
66
|
+
-PublishTarget testpypi `
|
|
67
|
+
-Ref main `
|
|
68
|
+
-RequireLocalPass `
|
|
69
|
+
-DryRun `
|
|
70
|
+
-ReleaseTag cogniflow-v0.1.0-test
|
|
71
|
+
```
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# cogniflow
|
|
2
|
+
|
|
3
|
+
Public Cogniflow distribution for end users.
|
|
4
|
+
|
|
5
|
+
Install:
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
pip install cogniflow
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
This package does not implement a second CLI. It depends on:
|
|
12
|
+
|
|
13
|
+
- `cf-core-cli`, which provides the `cf` command
|
|
14
|
+
- `cf-setup`, which powers `cf install`
|
|
15
|
+
|
|
16
|
+
Typical public flow:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install cogniflow
|
|
20
|
+
cf install
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Repository developers should continue to use:
|
|
24
|
+
|
|
25
|
+
```powershell
|
|
26
|
+
.\scripts\fresh_install_v2.ps1
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
## Publishing
|
|
30
|
+
|
|
31
|
+
`cogniflow` is the public metapackage at the end of the release chain:
|
|
32
|
+
|
|
33
|
+
- Workflow: `.github/workflows/cogniflow_windows_publish.yml`
|
|
34
|
+
- Package directory: `sandcastle/cogniflow`
|
|
35
|
+
- PyPI tag: `cogniflow-v<version>`
|
|
36
|
+
- TestPyPI tag: `cogniflow-v<version>-test`
|
|
37
|
+
- Release order: publish `cf-core-cli 0.1.5` first, then `cf-setup`, then `cogniflow`
|
|
38
|
+
|
|
39
|
+
Local preflight:
|
|
40
|
+
|
|
41
|
+
```powershell
|
|
42
|
+
powershell -ExecutionPolicy Bypass -File scripts/mimic_windows_python_publish_workflow.ps1 `
|
|
43
|
+
-WorkflowFile .github/workflows/cogniflow_windows_publish.yml `
|
|
44
|
+
-PackageDir sandcastle/cogniflow `
|
|
45
|
+
-PythonExe py `
|
|
46
|
+
-PythonVersion 3.14
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
Queue a dry-run dispatch:
|
|
50
|
+
|
|
51
|
+
```powershell
|
|
52
|
+
powershell -ExecutionPolicy Bypass -File scripts/queue_windows_python_publish_workflow.ps1 `
|
|
53
|
+
-WorkflowFile .github/workflows/cogniflow_windows_publish.yml `
|
|
54
|
+
-PackageDir sandcastle/cogniflow `
|
|
55
|
+
-PublishTarget testpypi `
|
|
56
|
+
-Ref main `
|
|
57
|
+
-RequireLocalPass `
|
|
58
|
+
-DryRun `
|
|
59
|
+
-ReleaseTag cogniflow-v0.1.0-test
|
|
60
|
+
```
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "cogniflow"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Public Cogniflow distribution that installs the cf CLI and setup orchestration"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.11"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"cf-core-cli>=0.1.5",
|
|
13
|
+
"cf-setup>=0.1.0",
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.optional-dependencies]
|
|
17
|
+
test = [
|
|
18
|
+
"pytest>=8.0",
|
|
19
|
+
]
|
|
20
|
+
|
|
21
|
+
[tool.setuptools]
|
|
22
|
+
package-dir = {"" = "src"}
|
|
23
|
+
|
|
24
|
+
[tool.setuptools.packages.find]
|
|
25
|
+
where = ["src"]
|
|
26
|
+
include = ["cogniflow*"]
|
|
@@ -0,0 +1,71 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: cogniflow
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Public Cogniflow distribution that installs the cf CLI and setup orchestration
|
|
5
|
+
Requires-Python: >=3.11
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: cf-core-cli>=0.1.5
|
|
8
|
+
Requires-Dist: cf-setup>=0.1.0
|
|
9
|
+
Provides-Extra: test
|
|
10
|
+
Requires-Dist: pytest>=8.0; extra == "test"
|
|
11
|
+
|
|
12
|
+
# cogniflow
|
|
13
|
+
|
|
14
|
+
Public Cogniflow distribution for end users.
|
|
15
|
+
|
|
16
|
+
Install:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
pip install cogniflow
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
This package does not implement a second CLI. It depends on:
|
|
23
|
+
|
|
24
|
+
- `cf-core-cli`, which provides the `cf` command
|
|
25
|
+
- `cf-setup`, which powers `cf install`
|
|
26
|
+
|
|
27
|
+
Typical public flow:
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pip install cogniflow
|
|
31
|
+
cf install
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
Repository developers should continue to use:
|
|
35
|
+
|
|
36
|
+
```powershell
|
|
37
|
+
.\scripts\fresh_install_v2.ps1
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Publishing
|
|
41
|
+
|
|
42
|
+
`cogniflow` is the public metapackage at the end of the release chain:
|
|
43
|
+
|
|
44
|
+
- Workflow: `.github/workflows/cogniflow_windows_publish.yml`
|
|
45
|
+
- Package directory: `sandcastle/cogniflow`
|
|
46
|
+
- PyPI tag: `cogniflow-v<version>`
|
|
47
|
+
- TestPyPI tag: `cogniflow-v<version>-test`
|
|
48
|
+
- Release order: publish `cf-core-cli 0.1.5` first, then `cf-setup`, then `cogniflow`
|
|
49
|
+
|
|
50
|
+
Local preflight:
|
|
51
|
+
|
|
52
|
+
```powershell
|
|
53
|
+
powershell -ExecutionPolicy Bypass -File scripts/mimic_windows_python_publish_workflow.ps1 `
|
|
54
|
+
-WorkflowFile .github/workflows/cogniflow_windows_publish.yml `
|
|
55
|
+
-PackageDir sandcastle/cogniflow `
|
|
56
|
+
-PythonExe py `
|
|
57
|
+
-PythonVersion 3.14
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
Queue a dry-run dispatch:
|
|
61
|
+
|
|
62
|
+
```powershell
|
|
63
|
+
powershell -ExecutionPolicy Bypass -File scripts/queue_windows_python_publish_workflow.ps1 `
|
|
64
|
+
-WorkflowFile .github/workflows/cogniflow_windows_publish.yml `
|
|
65
|
+
-PackageDir sandcastle/cogniflow `
|
|
66
|
+
-PublishTarget testpypi `
|
|
67
|
+
-Ref main `
|
|
68
|
+
-RequireLocalPass `
|
|
69
|
+
-DryRun `
|
|
70
|
+
-ReleaseTag cogniflow-v0.1.0-test
|
|
71
|
+
```
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
pyproject.toml
|
|
3
|
+
src/cogniflow/__init__.py
|
|
4
|
+
src/cogniflow.egg-info/PKG-INFO
|
|
5
|
+
src/cogniflow.egg-info/SOURCES.txt
|
|
6
|
+
src/cogniflow.egg-info/dependency_links.txt
|
|
7
|
+
src/cogniflow.egg-info/requires.txt
|
|
8
|
+
src/cogniflow.egg-info/top_level.txt
|
|
9
|
+
tests/test_distribution_metadata.py
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
cogniflow
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
from importlib import metadata
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
def test_cogniflow_depends_on_cli_and_setup() -> None:
|
|
5
|
+
distribution = metadata.distribution("cogniflow")
|
|
6
|
+
requires = distribution.requires or []
|
|
7
|
+
assert any(requirement.startswith("cf-core-cli") for requirement in requires)
|
|
8
|
+
assert any(requirement.startswith("cf-setup") for requirement in requires)
|