aetherflow 0.0.5rc1__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.
- aetherflow-0.0.5rc1/PKG-INFO +80 -0
- aetherflow-0.0.5rc1/README.md +67 -0
- aetherflow-0.0.5rc1/aetherflow.egg-info/PKG-INFO +80 -0
- aetherflow-0.0.5rc1/aetherflow.egg-info/SOURCES.txt +7 -0
- aetherflow-0.0.5rc1/aetherflow.egg-info/dependency_links.txt +1 -0
- aetherflow-0.0.5rc1/aetherflow.egg-info/requires.txt +2 -0
- aetherflow-0.0.5rc1/aetherflow.egg-info/top_level.txt +1 -0
- aetherflow-0.0.5rc1/pyproject.toml +23 -0
- aetherflow-0.0.5rc1/setup.cfg +4 -0
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aetherflow
|
|
3
|
+
Version: 0.0.5rc1
|
|
4
|
+
Summary: AetherFlow meta package (convenience wrapper for core + scheduler)
|
|
5
|
+
Project-URL: Homepage, https://github.com/aicodedao/aetherflow
|
|
6
|
+
Project-URL: Documentation, https://github.com/aicodedao/aetherflow/tree/develop/docs
|
|
7
|
+
Project-URL: Source, https://github.com/aicodedao/aetherflow/tree/develop/packages/aetherflow
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/aicodedao/aetherflow/issues
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: aetherflow-core>=0.0.1
|
|
12
|
+
Requires-Dist: aetherflow-scheduler>=0.0.0
|
|
13
|
+
|
|
14
|
+
# aetherflow (meta package)
|
|
15
|
+
|
|
16
|
+
[](https://test.pypi.org/project/aetherflow/)
|
|
17
|
+
[](https://pypi.org/project/aetherflow/)
|
|
18
|
+
|
|
19
|
+
`aetherflow` is a **convenience meta package**.
|
|
20
|
+
|
|
21
|
+
It installs:
|
|
22
|
+
- [aetherflow-core](../aetherflow-core) (core engine + CLI `aetherflow`)
|
|
23
|
+
- [aetherflow-scheduler](../aetherflow-scheduler) (scheduler + CLI `aetherflow-scheduler`)
|
|
24
|
+
|
|
25
|
+
It intentionally ships **no Python package code** itself (it’s just dependencies).
|
|
26
|
+
|
|
27
|
+
Use this if you want “the whole suite” with one install command.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Install
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install aetherflow
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## What you get
|
|
40
|
+
|
|
41
|
+
CLIs:
|
|
42
|
+
- `aetherflow` (run flows)
|
|
43
|
+
- `aetherflow-scheduler` (cron scheduling)
|
|
44
|
+
|
|
45
|
+
Python modules:
|
|
46
|
+
- `aetherflow.core.*`
|
|
47
|
+
- `aetherflow.scheduler.*`
|
|
48
|
+
|
|
49
|
+
Quick sanity check:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
python -c "import aetherflow.core; import aetherflow.scheduler"
|
|
53
|
+
|
|
54
|
+
aetherflow --help
|
|
55
|
+
aetherflow-scheduler --help
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## Namespace package rule (important)
|
|
61
|
+
|
|
62
|
+
AetherFlow uses a **PEP 420 implicit namespace package** across multiple distributions.
|
|
63
|
+
|
|
64
|
+
That means:
|
|
65
|
+
- There should be **no** `aetherflow/__init__.py` shipped by these distributions.
|
|
66
|
+
- You generally should **not** do `from aetherflow import ...`.
|
|
67
|
+
|
|
68
|
+
Do:
|
|
69
|
+
- `from aetherflow.core.api import ...`
|
|
70
|
+
- `import aetherflow.core`
|
|
71
|
+
- `import aetherflow.scheduler`
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## Docs (in this repository)
|
|
76
|
+
|
|
77
|
+
Canonical docs live in [Aetherflow Doumentation](../../docs).
|
|
78
|
+
|
|
79
|
+
Start here:
|
|
80
|
+
- [Home Docs.](../../docs/INDEX.md)
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
# aetherflow (meta package)
|
|
2
|
+
|
|
3
|
+
[](https://test.pypi.org/project/aetherflow/)
|
|
4
|
+
[](https://pypi.org/project/aetherflow/)
|
|
5
|
+
|
|
6
|
+
`aetherflow` is a **convenience meta package**.
|
|
7
|
+
|
|
8
|
+
It installs:
|
|
9
|
+
- [aetherflow-core](../aetherflow-core) (core engine + CLI `aetherflow`)
|
|
10
|
+
- [aetherflow-scheduler](../aetherflow-scheduler) (scheduler + CLI `aetherflow-scheduler`)
|
|
11
|
+
|
|
12
|
+
It intentionally ships **no Python package code** itself (it’s just dependencies).
|
|
13
|
+
|
|
14
|
+
Use this if you want “the whole suite” with one install command.
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
pip install aetherflow
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
---
|
|
25
|
+
|
|
26
|
+
## What you get
|
|
27
|
+
|
|
28
|
+
CLIs:
|
|
29
|
+
- `aetherflow` (run flows)
|
|
30
|
+
- `aetherflow-scheduler` (cron scheduling)
|
|
31
|
+
|
|
32
|
+
Python modules:
|
|
33
|
+
- `aetherflow.core.*`
|
|
34
|
+
- `aetherflow.scheduler.*`
|
|
35
|
+
|
|
36
|
+
Quick sanity check:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
python -c "import aetherflow.core; import aetherflow.scheduler"
|
|
40
|
+
|
|
41
|
+
aetherflow --help
|
|
42
|
+
aetherflow-scheduler --help
|
|
43
|
+
```
|
|
44
|
+
|
|
45
|
+
---
|
|
46
|
+
|
|
47
|
+
## Namespace package rule (important)
|
|
48
|
+
|
|
49
|
+
AetherFlow uses a **PEP 420 implicit namespace package** across multiple distributions.
|
|
50
|
+
|
|
51
|
+
That means:
|
|
52
|
+
- There should be **no** `aetherflow/__init__.py` shipped by these distributions.
|
|
53
|
+
- You generally should **not** do `from aetherflow import ...`.
|
|
54
|
+
|
|
55
|
+
Do:
|
|
56
|
+
- `from aetherflow.core.api import ...`
|
|
57
|
+
- `import aetherflow.core`
|
|
58
|
+
- `import aetherflow.scheduler`
|
|
59
|
+
|
|
60
|
+
---
|
|
61
|
+
|
|
62
|
+
## Docs (in this repository)
|
|
63
|
+
|
|
64
|
+
Canonical docs live in [Aetherflow Doumentation](../../docs).
|
|
65
|
+
|
|
66
|
+
Start here:
|
|
67
|
+
- [Home Docs.](../../docs/INDEX.md)
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: aetherflow
|
|
3
|
+
Version: 0.0.5rc1
|
|
4
|
+
Summary: AetherFlow meta package (convenience wrapper for core + scheduler)
|
|
5
|
+
Project-URL: Homepage, https://github.com/aicodedao/aetherflow
|
|
6
|
+
Project-URL: Documentation, https://github.com/aicodedao/aetherflow/tree/develop/docs
|
|
7
|
+
Project-URL: Source, https://github.com/aicodedao/aetherflow/tree/develop/packages/aetherflow
|
|
8
|
+
Project-URL: Bug Tracker, https://github.com/aicodedao/aetherflow/issues
|
|
9
|
+
Requires-Python: >=3.10
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: aetherflow-core>=0.0.1
|
|
12
|
+
Requires-Dist: aetherflow-scheduler>=0.0.0
|
|
13
|
+
|
|
14
|
+
# aetherflow (meta package)
|
|
15
|
+
|
|
16
|
+
[](https://test.pypi.org/project/aetherflow/)
|
|
17
|
+
[](https://pypi.org/project/aetherflow/)
|
|
18
|
+
|
|
19
|
+
`aetherflow` is a **convenience meta package**.
|
|
20
|
+
|
|
21
|
+
It installs:
|
|
22
|
+
- [aetherflow-core](../aetherflow-core) (core engine + CLI `aetherflow`)
|
|
23
|
+
- [aetherflow-scheduler](../aetherflow-scheduler) (scheduler + CLI `aetherflow-scheduler`)
|
|
24
|
+
|
|
25
|
+
It intentionally ships **no Python package code** itself (it’s just dependencies).
|
|
26
|
+
|
|
27
|
+
Use this if you want “the whole suite” with one install command.
|
|
28
|
+
|
|
29
|
+
---
|
|
30
|
+
|
|
31
|
+
## Install
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install aetherflow
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
## What you get
|
|
40
|
+
|
|
41
|
+
CLIs:
|
|
42
|
+
- `aetherflow` (run flows)
|
|
43
|
+
- `aetherflow-scheduler` (cron scheduling)
|
|
44
|
+
|
|
45
|
+
Python modules:
|
|
46
|
+
- `aetherflow.core.*`
|
|
47
|
+
- `aetherflow.scheduler.*`
|
|
48
|
+
|
|
49
|
+
Quick sanity check:
|
|
50
|
+
|
|
51
|
+
```bash
|
|
52
|
+
python -c "import aetherflow.core; import aetherflow.scheduler"
|
|
53
|
+
|
|
54
|
+
aetherflow --help
|
|
55
|
+
aetherflow-scheduler --help
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
---
|
|
59
|
+
|
|
60
|
+
## Namespace package rule (important)
|
|
61
|
+
|
|
62
|
+
AetherFlow uses a **PEP 420 implicit namespace package** across multiple distributions.
|
|
63
|
+
|
|
64
|
+
That means:
|
|
65
|
+
- There should be **no** `aetherflow/__init__.py` shipped by these distributions.
|
|
66
|
+
- You generally should **not** do `from aetherflow import ...`.
|
|
67
|
+
|
|
68
|
+
Do:
|
|
69
|
+
- `from aetherflow.core.api import ...`
|
|
70
|
+
- `import aetherflow.core`
|
|
71
|
+
- `import aetherflow.scheduler`
|
|
72
|
+
|
|
73
|
+
---
|
|
74
|
+
|
|
75
|
+
## Docs (in this repository)
|
|
76
|
+
|
|
77
|
+
Canonical docs live in [Aetherflow Doumentation](../../docs).
|
|
78
|
+
|
|
79
|
+
Start here:
|
|
80
|
+
- [Home Docs.](../../docs/INDEX.md)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "aetherflow"
|
|
7
|
+
version = "0.0.5rc1"
|
|
8
|
+
description = "AetherFlow meta package (convenience wrapper for core + scheduler)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
dependencies = [
|
|
12
|
+
"aetherflow-core>=0.0.1",
|
|
13
|
+
"aetherflow-scheduler>=0.0.0"
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
"Homepage" = "https://github.com/aicodedao/aetherflow"
|
|
18
|
+
"Documentation" = "https://github.com/aicodedao/aetherflow/tree/develop/docs"
|
|
19
|
+
"Source" = "https://github.com/aicodedao/aetherflow/tree/develop/packages/aetherflow"
|
|
20
|
+
"Bug Tracker" = "https://github.com/aicodedao/aetherflow/issues"
|
|
21
|
+
|
|
22
|
+
[tool.setuptools]
|
|
23
|
+
packages = []
|