zodec 0.0.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.
zodec-0.0.0/.gitignore ADDED
@@ -0,0 +1,255 @@
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
+ # env.bak/
144
+ venv.bak/
145
+
146
+ # Environment variables - exclude all .env files
147
+ # .env
148
+ # .env.local
149
+ # .env.*.local
150
+ src/env/.env.*
151
+ !src/env/.env.production
152
+ !src/env/.env.uat
153
+ !src/env/.env.development
154
+ !src/env/.env.local
155
+ !src/env/.env.example
156
+ !src/env/.env.base
157
+
158
+ # But DO include example/template files
159
+ # src/env/.env
160
+ # !.env.example
161
+
162
+ # Logs
163
+ logs/
164
+ *.log.*
165
+
166
+ # Docker
167
+ docker-compose.override.yml
168
+
169
+ # Deployment
170
+ *.pid
171
+ *.sock
172
+
173
+ # Spyder project settings
174
+ .spyderproject
175
+ .spyproject
176
+
177
+ # Rope project settings
178
+ .ropeproject
179
+
180
+ # mkdocs documentation
181
+ /site
182
+
183
+ # mypy
184
+ .mypy_cache/
185
+ .dmypy.json
186
+ dmypy.json
187
+
188
+ # Pyre type checker
189
+ .pyre/
190
+
191
+ # pytype static type analyzer
192
+ .pytype/
193
+
194
+ # Cython debug symbols
195
+ cython_debug/
196
+
197
+ # PyCharm
198
+ # JetBrains specific template is maintained in a separate JetBrains.gitignore that can
199
+ # be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
200
+ # and can be added to the global gitignore or merged into this file. For a more nuclear
201
+ # option (not recommended) you can uncomment the following to ignore the entire idea folder.
202
+ #.idea/
203
+
204
+ # Abstra
205
+ # Abstra is an AI-powered process automation framework.
206
+ # Ignore directories containing user credentials, local state, and settings.
207
+ # Learn more at https://abstra.io/docs
208
+ .abstra/
209
+
210
+ # Visual Studio Code
211
+ # Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
212
+ # that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
213
+ # and can be added to the global gitignore or merged into this file. However, if you prefer,
214
+ # you could uncomment the following to ignore the entire vscode folder
215
+ # .vscode/
216
+
217
+ # Ruff stuff:
218
+ .ruff_cache/
219
+
220
+ # PyPI configuration file
221
+ .pypirc
222
+
223
+ # Cursor
224
+ # Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
225
+ # exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
226
+ # refer to https://docs.cursor.com/context/ignore-files
227
+ .cursorignore
228
+ .cursorindexingignore
229
+
230
+ # Marimo
231
+ marimo/_static/
232
+ marimo/_lsp/
233
+ __marimo__/
234
+
235
+
236
+
237
+ # others
238
+ .claude
239
+ .github/agents
240
+ .github/prompts
241
+ .mcp.json
242
+ .vscode/ropext.json
243
+
244
+ # build-time artifacts (corp CA certs etc.) — machine-specific, never commit
245
+ .build/
246
+
247
+ # local-only docker (testing before deploy) — never commit
248
+ Dockerfile.local
249
+ docker-compose.local.yaml
250
+
251
+
252
+
253
+
254
+ .playwright-mcp
255
+ src/scripts/tests/copilotstudio/dump/
zodec-0.0.0/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Vishwa Vignan
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.
zodec-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,37 @@
1
+ Metadata-Version: 2.5
2
+ Name: zodec
3
+ Version: 0.0.0
4
+ Summary: Declarative schema + codec toolkit — define once, validate and encode everywhere. Reserved; in active development.
5
+ Author-email: Vishwa Vignan <vizh.createz@gmail.com>
6
+ License: MIT
7
+ License-File: LICENSE
8
+ Keywords: codec,encoding,schema,serialization,types,validation
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Intended Audience :: Developers
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
17
+ Requires-Python: >=3.11
18
+ Description-Content-Type: text/markdown
19
+
20
+ # zodec
21
+
22
+ > Declarative schema + codec toolkit — define once, validate and encode everywhere.
23
+
24
+ This is a name reservation. The package is in active development; the first public release will replace this placeholder.
25
+
26
+ ## status
27
+
28
+ | field | value |
29
+ |---------------|----------------------------|
30
+ | version | `0.0.0` — name reservation |
31
+ | first release | TBD |
32
+ | python | `>=3.11` |
33
+ | license | MIT |
34
+
35
+ ## not yet installable
36
+
37
+ `pip install zodec` will resolve, but the package currently exposes nothing functional. Watch this page for the first usable release.
zodec-0.0.0/README.md ADDED
@@ -0,0 +1,18 @@
1
+ # zodec
2
+
3
+ > Declarative schema + codec toolkit — define once, validate and encode everywhere.
4
+
5
+ This is a name reservation. The package is in active development; the first public release will replace this placeholder.
6
+
7
+ ## status
8
+
9
+ | field | value |
10
+ |---------------|----------------------------|
11
+ | version | `0.0.0` — name reservation |
12
+ | first release | TBD |
13
+ | python | `>=3.11` |
14
+ | license | MIT |
15
+
16
+ ## not yet installable
17
+
18
+ `pip install zodec` will resolve, but the package currently exposes nothing functional. Watch this page for the first usable release.
@@ -0,0 +1,28 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "zodec"
7
+ version = "0.0.0"
8
+ description = "Declarative schema + codec toolkit — define once, validate and encode everywhere. Reserved; in active development."
9
+ readme = "README.md"
10
+ license = { text = "MIT" }
11
+ requires-python = ">=3.11"
12
+ authors = [
13
+ { name = "Vishwa Vignan", email = "vizh.createz@gmail.com" },
14
+ ]
15
+ keywords = ["schema", "codec", "validation", "serialization", "types", "encoding"]
16
+ classifiers = [
17
+ "Development Status :: 1 - Planning",
18
+ "Intended Audience :: Developers",
19
+ "License :: OSI Approved :: MIT License",
20
+ "Programming Language :: Python :: 3",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ "Topic :: Software Development :: Libraries :: Python Modules",
25
+ ]
26
+
27
+ [tool.hatch.build.targets.wheel]
28
+ packages = ["src/zodec"]
@@ -0,0 +1,7 @@
1
+ """zodec — declarative schema + codec toolkit.
2
+
3
+ Name reservation. Active development; first usable release TBD.
4
+ """
5
+
6
+ __version__ = "0.0.0"
7
+ __all__ = ["__version__"]