omegaflow 0.2.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.
@@ -0,0 +1,182 @@
1
+ .aider*
2
+
3
+ # Byte-compiled / optimized / DLL files
4
+ __pycache__/
5
+ *.py[cod]
6
+ *$py.class
7
+
8
+ # C extensions
9
+ *.so
10
+
11
+ # Distribution / packaging
12
+ .Python
13
+ build/
14
+ develop-eggs/
15
+ dist/
16
+ downloads/
17
+ eggs/
18
+ .eggs/
19
+ lib/
20
+ lib64/
21
+ parts/
22
+ sdist/
23
+ var/
24
+ wheels/
25
+ share/python-wheels/
26
+ *.egg-info/
27
+ .installed.cfg
28
+ *.egg
29
+ MANIFEST
30
+
31
+ # PyInstaller
32
+ # Usually these files are written by a python script from a template
33
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
34
+ *.manifest
35
+ *.spec
36
+
37
+ # Installer logs
38
+ pip-log.txt
39
+ pip-delete-this-directory.txt
40
+
41
+ # Unit test / coverage reports
42
+ htmlcov/
43
+ .tox/
44
+ .nox/
45
+ .coverage
46
+ .coverage.*
47
+ .cache
48
+ nosetests.xml
49
+ coverage.xml
50
+ *.cover
51
+ *.py,cover
52
+ .hypothesis/
53
+ .pytest_cache/
54
+ cover/
55
+
56
+ # Translations
57
+ *.mo
58
+ *.pot
59
+
60
+ # Django stuff:
61
+ *.log
62
+ local_settings.py
63
+ db.sqlite3
64
+ db.sqlite3-journal
65
+
66
+ # Flask stuff:
67
+ instance/
68
+ .webassets-cache
69
+
70
+ # Scrapy stuff:
71
+ .scrapy
72
+
73
+ # Sphinx documentation
74
+ docs/_build/
75
+
76
+ # Docusaurus / website
77
+ /website/.docusaurus/
78
+ /website/build/
79
+ /website/node_modules/
80
+
81
+ # OmegaFlow Studio runtime
82
+ /recordings/.omegaflow/
83
+
84
+ # PyBuilder
85
+ .pybuilder/
86
+ target/
87
+
88
+ # Jupyter Notebook
89
+ .ipynb_checkpoints
90
+
91
+ # IPython
92
+ profile_default/
93
+ ipython_config.py
94
+
95
+ # pyenv
96
+ # For a library or package, you might want to ignore these files since the code is
97
+ # intended to run in multiple environments; otherwise, check them in:
98
+ # .python-version
99
+
100
+ # pipenv
101
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
102
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
103
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
104
+ # install all needed dependencies.
105
+ #Pipfile.lock
106
+
107
+ # poetry
108
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
109
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
110
+ # commonly ignored for libraries.
111
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
112
+ #poetry.lock
113
+
114
+ # pdm
115
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
116
+ #pdm.lock
117
+ # pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
118
+ # in version control.
119
+ # https://pdm.fming.dev/#use-with-ide
120
+ .pdm.toml
121
+
122
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
123
+ __pypackages__/
124
+
125
+ # Celery stuff
126
+ celerybeat-schedule
127
+ celerybeat.pid
128
+
129
+ # SageMath parsed files
130
+ *.sage.py
131
+
132
+ # Environments
133
+ .env
134
+ .venv
135
+ env/
136
+ venv/
137
+ ENV/
138
+ env.bak/
139
+ venv.bak/
140
+
141
+ # Spyder project settings
142
+ .spyderproject
143
+ .spyproject
144
+
145
+ # Rope project settings
146
+ .ropeproject
147
+
148
+ # mkdocs documentation
149
+ /site
150
+
151
+ # mypy
152
+ .mypy_cache/
153
+ .dmypy.json
154
+ dmypy.json
155
+
156
+ # Pyre type checker
157
+ .pyre/
158
+
159
+ # pytype static type analyzer
160
+ .pytype/
161
+
162
+ # Cython debug symbols
163
+ cython_debug/
164
+
165
+ # PyCharm
166
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
167
+ # be added to the global gitignore or merged into this project gitignore. For a PyCharm
168
+ # project, it is recommended to include the following files:
169
+ # .idea/
170
+ # *.iml
171
+ # *.ipr
172
+
173
+ # VS Code
174
+ .vscode/
175
+
176
+ # macOS
177
+ .DS_Store
178
+
179
+ # Windows
180
+ Thumbs.db
181
+ ehthumbs.db
182
+ Desktop.ini
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Omry Yadan
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: omegaflow
3
+ Version: 0.2.0
4
+ Summary: Scripted terminal and video flow authoring for OmegaFlow
5
+ Author: Omry Yadan
6
+ License-Expression: MIT
7
+ License-File: LICENSE
8
+ Requires-Python: >=3.11
9
+ Requires-Dist: hydra-core==1.4.0.dev5
10
+ Requires-Dist: omegaconf>=2.3
11
+ Requires-Dist: pyyaml>=6.0
12
+ Provides-Extra: dev
13
+ Requires-Dist: build>=1.2; extra == 'dev'
14
+ Requires-Dist: pytest>=8.0; extra == 'dev'
15
+ Description-Content-Type: text/markdown
16
+
17
+ # OmegaFlow
18
+
19
+ OmegaFlow is a tool for scripted terminal and video flows. Operators
20
+ author an OmegaFlow script, then build a website-ready video from that source.
21
+
22
+ The project includes a Python package named `omegaflow`, an `omegaflow` CLI,
23
+ a Docusaurus website for `omegaflow.dev`, a quickstart demo recording, and
24
+ tutorial chapter scaffolding under `recordings/`.
25
+
26
+ ## Development
27
+
28
+ ```bash
29
+ python -m build
30
+ pytest
31
+ pnpm --dir website build
32
+ omegaflow recording=quickstart-demo action=build
33
+ ```
34
+
35
+ The current repository also preserves older OmegaFlow design work under
36
+ `docs/future/`.
37
+
38
+ ## Deployment
39
+
40
+ The website is configured for `https://omegaflow.dev` and includes a GitHub
41
+ Pages workflow at `.github/workflows/deploy-website.yml`. The workflow builds
42
+ `website/` with pnpm and deploys `website/build`; `website/static/CNAME`
43
+ contains the custom domain.
@@ -0,0 +1,27 @@
1
+ # OmegaFlow
2
+
3
+ OmegaFlow is a tool for scripted terminal and video flows. Operators
4
+ author an OmegaFlow script, then build a website-ready video from that source.
5
+
6
+ The project includes a Python package named `omegaflow`, an `omegaflow` CLI,
7
+ a Docusaurus website for `omegaflow.dev`, a quickstart demo recording, and
8
+ tutorial chapter scaffolding under `recordings/`.
9
+
10
+ ## Development
11
+
12
+ ```bash
13
+ python -m build
14
+ pytest
15
+ pnpm --dir website build
16
+ omegaflow recording=quickstart-demo action=build
17
+ ```
18
+
19
+ The current repository also preserves older OmegaFlow design work under
20
+ `docs/future/`.
21
+
22
+ ## Deployment
23
+
24
+ The website is configured for `https://omegaflow.dev` and includes a GitHub
25
+ Pages workflow at `.github/workflows/deploy-website.yml`. The workflow builds
26
+ `website/` with pnpm and deploys `website/build`; `website/static/CNAME`
27
+ contains the custom domain.
@@ -0,0 +1,43 @@
1
+ [build-system]
2
+ requires = ["hatchling>=1.26"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "omegaflow"
7
+ version = "0.2.0"
8
+ description = "Scripted terminal and video flow authoring for OmegaFlow"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ license = "MIT"
12
+ authors = [
13
+ { name = "Omry Yadan" },
14
+ ]
15
+ dependencies = [
16
+ "hydra-core==1.4.0.dev5",
17
+ "omegaconf>=2.3",
18
+ "pyyaml>=6.0",
19
+ ]
20
+
21
+ [project.optional-dependencies]
22
+ dev = [
23
+ "build>=1.2",
24
+ "pytest>=8.0",
25
+ ]
26
+
27
+ [project.scripts]
28
+ omegaflow = "omegaflow_studio.studio:main"
29
+
30
+ [tool.hatch.build.targets.wheel]
31
+ packages = ["src/omegaflow_studio"]
32
+
33
+ [tool.hatch.build.targets.sdist]
34
+ include = [
35
+ "/LICENSE",
36
+ "/README.md",
37
+ "/pyproject.toml",
38
+ "/src",
39
+ "/tests",
40
+ ]
41
+
42
+ [tool.pytest.ini_options]
43
+ testpaths = ["tests"]
@@ -0,0 +1,5 @@
1
+ """OmegaFlow package."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.2.0"