mng-pair 0.1.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.
@@ -0,0 +1,267 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[codz]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ build/
12
+ develop-eggs/
13
+ dist/
14
+ downloads/
15
+ eggs/
16
+ .eggs/
17
+ lib/
18
+ lib64/
19
+ parts/
20
+ sdist/
21
+ var/
22
+ wheels/
23
+ share/python-wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+ MANIFEST
28
+
29
+ # PyInstaller
30
+ # Usually these files are written by a python script from a template
31
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
32
+ *.manifest
33
+ *.spec
34
+
35
+ # Installer logs
36
+ pip-log.txt
37
+ pip-delete-this-directory.txt
38
+
39
+ # Unit test / coverage reports
40
+ htmlcov/
41
+ .tox/
42
+ .nox/
43
+ .coverage
44
+ .coverage.*
45
+ .cache
46
+ nosetests.xml
47
+ coverage.xml
48
+ *.cover
49
+ *.py.cover
50
+ .hypothesis/
51
+ .pytest_cache/
52
+ cover/
53
+
54
+ # Translations
55
+ *.mo
56
+ *.pot
57
+
58
+ # Django stuff:
59
+ *.log
60
+ local_settings.py
61
+ db.sqlite3
62
+ db.sqlite3-journal
63
+
64
+ # Flask stuff:
65
+ instance/
66
+ .webassets-cache
67
+
68
+ # Scrapy stuff:
69
+ .scrapy
70
+
71
+ # Sphinx documentation
72
+ docs/_build/
73
+
74
+ # PyBuilder
75
+ .pybuilder/
76
+ target/
77
+
78
+ # Jupyter Notebook
79
+ .ipynb_checkpoints
80
+
81
+ # IPython
82
+ profile_default/
83
+ ipython_config.py
84
+
85
+ # pyenv
86
+ # For a library or package, you might want to ignore these files since the code is
87
+ # intended to run in multiple environments; otherwise, check them in:
88
+ # .python-version
89
+
90
+ # pipenv
91
+ # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
92
+ # However, in case of collaboration, if having platform-specific dependencies or dependencies
93
+ # having no cross-platform support, pipenv may install dependencies that don't work, or not
94
+ # install all needed dependencies.
95
+ #Pipfile.lock
96
+
97
+ # UV
98
+ # Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
99
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
100
+ # commonly ignored for libraries.
101
+ #uv.lock
102
+
103
+ # poetry
104
+ # Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
105
+ # This is especially recommended for binary packages to ensure reproducibility, and is more
106
+ # commonly ignored for libraries.
107
+ # https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
108
+ #poetry.lock
109
+ #poetry.toml
110
+
111
+ # pdm
112
+ # Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
113
+ # pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
114
+ # https://pdm-project.org/en/latest/usage/project/#working-with-version-control
115
+ #pdm.lock
116
+ #pdm.toml
117
+ .pdm-python
118
+ .pdm-build/
119
+
120
+ # pixi
121
+ # Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
122
+ #pixi.lock
123
+ # Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
124
+ # in the .venv directory. It is recommended not to include this directory in version control.
125
+ .pixi
126
+
127
+ # PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
128
+ __pypackages__/
129
+
130
+ # Celery stuff
131
+ celerybeat-schedule
132
+ celerybeat.pid
133
+
134
+ # SageMath parsed files
135
+ *.sage.py
136
+
137
+ # Environments
138
+ .env
139
+ .envrc
140
+ .venv
141
+ .venv-*
142
+ env/
143
+ venv/
144
+ ENV/
145
+ env.bak/
146
+ venv.bak/
147
+
148
+ # Spyder project settings
149
+ .spyderproject
150
+ .spyproject
151
+
152
+ # Rope project settings
153
+ .ropeproject
154
+
155
+ # mkdocs documentation
156
+ /site
157
+
158
+ # mypy
159
+ .mypy_cache/
160
+ .dmypy.json
161
+ dmypy.json
162
+
163
+ # Pyre type checker
164
+ .pyre/
165
+
166
+ # pytype static type analyzer
167
+ .pytype/
168
+
169
+ # Cython debug symbols
170
+ cython_debug/
171
+
172
+ # PyCharm
173
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
174
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
175
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
176
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
177
+ .idea/
178
+
179
+ # Abstra
180
+ # Abstra is an AI-powered process automation framework.
181
+ # Ignore directories containing user credentials, local state, and settings.
182
+ # Learn more at https://abstra.io/docs
183
+ .abstra/
184
+
185
+ # Visual Studio Code
186
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
187
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
188
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
189
+ # you could uncomment the following to ignore the entire vscode folder
190
+ # .vscode/
191
+
192
+ # Ruff stuff:
193
+ .ruff_cache/
194
+
195
+ # PyPI configuration file
196
+ .pypirc
197
+
198
+ # Cursor
199
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
200
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
201
+ # refer to https://docs.cursor.com/context/ignore-files
202
+ .cursorignore
203
+ .cursorindexingignore
204
+
205
+ # Marimo
206
+ marimo/_static/
207
+ marimo/_lsp/
208
+ __marimo__/
209
+
210
+ # task folders for local custom claude workflow
211
+ */*/_tasks/
212
+ .sesskey
213
+
214
+ # Node.js
215
+ node_modules/
216
+
217
+ # Frontend build artifacts
218
+ frontend-dist/
219
+
220
+ # ignore review files
221
+ .reviews/
222
+
223
+ # files necessary to smuggle session id into reviewers
224
+ .claude/sessionid
225
+
226
+ # Claude Code local settings (session-specific permissions)
227
+ .claude/settings.local.json
228
+
229
+ # PR status and URL files written by main_claude_stop_hook.sh for status line display
230
+ .claude/pr_url
231
+ .claude/pr_status
232
+
233
+ # History of commits reviewed by main_claude_stop_hook.sh (to detect stuck agents)
234
+ .claude/reviewed_commits
235
+
236
+ # Local Claude settings backup files
237
+ .claude/*.bak
238
+
239
+ # Local mng settings (not committed)
240
+ .mng/settings.local.toml
241
+
242
+ # so the user can make their own notification script
243
+ scripts/notify_user.local.sh
244
+
245
+ # Test output files (slow tests, coverage summaries)
246
+ .test_output/
247
+
248
+ # Active session marker file (used to detect interrupted sessions)
249
+ .claude/active
250
+
251
+ # we stick the image build artifacts here
252
+ .mng/dev/build/
253
+ .mng/dev/secrets/
254
+
255
+ # Offload caches and local files
256
+ .offload/**
257
+ test-results/**
258
+ current.tar.gz
259
+
260
+ # Changelings deploy-time build artifacts
261
+ .changelings/
262
+
263
+ # Autofix working artifacts
264
+ .autofix/
265
+
266
+ # for git worktrees from other repos
267
+ .external_worktrees/
@@ -0,0 +1,7 @@
1
+ Metadata-Version: 2.4
2
+ Name: mng-pair
3
+ Version: 0.1.1
4
+ Summary: Pair command plugin for mng - continuous file sync between agent and local directory
5
+ Requires-Python: >=3.11
6
+ Requires-Dist: click-option-group>=0.5.6
7
+ Requires-Dist: mng==0.1.5
@@ -0,0 +1,22 @@
1
+ """Project-level conftest for mng-pair.
2
+
3
+ When running tests from libs/mng_pair/, this conftest provides the common pytest hooks
4
+ that would otherwise come from the monorepo root conftest.py (which is not discovered
5
+ when pytest runs from a subdirectory).
6
+
7
+ When running from the monorepo root, the root conftest.py registers the hooks first,
8
+ and this file's register_conftest_hooks() call is a no-op (guarded by a module-level flag).
9
+ """
10
+
11
+ from imbue.imbue_common.conftest_hooks import register_conftest_hooks
12
+ from imbue.imbue_common.conftest_hooks import register_marker
13
+ from imbue.imbue_common.resource_guards import register_resource_guard
14
+ from imbue.mng.utils.logging import suppress_warnings
15
+
16
+ suppress_warnings()
17
+
18
+ # Register markers and guarded resources used by mng-pair tests.
19
+ register_marker("unison: marks tests that start a real unison file-sync process")
20
+ register_resource_guard("unison")
21
+
22
+ register_conftest_hooks(globals())
File without changes