├── .ars ├── .dockerignore ├── .gitignore ├── Jenkinsfile ├── LICENSE ├── README.adoc ├── README.md ├── README.rst ├── _adhesive.py ├── _gbs ├── install-software │ └── install-software.sh ├── prepare-build1 │ └── prepare-build1.sh ├── prepare-build2 │ └── prepare-build2.sh ├── prepare-build3 │ └── prepare-build3.sh ├── prepare-test1 │ └── prepare-test1.sh ├── prepare-test2 │ └── prepare-test2.sh └── run-build.sh ├── adhesive.sh ├── bin ├── clean.py ├── release.sh ├── requires_versions.py └── update-readme.py ├── mopyx ├── __init__.py ├── computed_property.py ├── decorator_action.py ├── decorator_computed.py ├── decorator_model.py ├── proxy_dict.py ├── proxy_list.py ├── rendering.py └── util.py ├── requirements.txt ├── setup.cfg ├── setup.py ├── stubs └── setuptools.pyi ├── test ├── __init__.py ├── test_action_on_model.py ├── test_computed_first_in_render.py ├── test_computed_property.py ├── test_ignore_updates.py ├── test_inheritance.py ├── test_list_render.py ├── test_merge_model.py ├── test_nested_lists_render.py ├── test_nested_render.py ├── test_render.py └── test_serialization.py └── versions.yml /.ars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/.ars -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/.gitignore -------------------------------------------------------------------------------- /Jenkinsfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/Jenkinsfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/LICENSE -------------------------------------------------------------------------------- /README.adoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/README.adoc -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/README.md -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/README.rst -------------------------------------------------------------------------------- /_adhesive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/_adhesive.py -------------------------------------------------------------------------------- /_gbs/install-software/install-software.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_gbs/prepare-build1/prepare-build1.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_gbs/prepare-build2/prepare-build2.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_gbs/prepare-build3/prepare-build3.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_gbs/prepare-test1/prepare-test1.sh: -------------------------------------------------------------------------------- 1 | pip install nose2 2 | -------------------------------------------------------------------------------- /_gbs/prepare-test2/prepare-test2.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_gbs/run-build.sh: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /adhesive.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/adhesive.sh -------------------------------------------------------------------------------- /bin/clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/bin/clean.py -------------------------------------------------------------------------------- /bin/release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/bin/release.sh -------------------------------------------------------------------------------- /bin/requires_versions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/bin/requires_versions.py -------------------------------------------------------------------------------- /bin/update-readme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/bin/update-readme.py -------------------------------------------------------------------------------- /mopyx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/mopyx/__init__.py -------------------------------------------------------------------------------- /mopyx/computed_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/mopyx/computed_property.py -------------------------------------------------------------------------------- /mopyx/decorator_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/mopyx/decorator_action.py -------------------------------------------------------------------------------- /mopyx/decorator_computed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/mopyx/decorator_computed.py -------------------------------------------------------------------------------- /mopyx/decorator_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/mopyx/decorator_model.py -------------------------------------------------------------------------------- /mopyx/proxy_dict.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/mopyx/proxy_dict.py -------------------------------------------------------------------------------- /mopyx/proxy_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/mopyx/proxy_list.py -------------------------------------------------------------------------------- /mopyx/rendering.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/mopyx/rendering.py -------------------------------------------------------------------------------- /mopyx/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/mopyx/util.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/setup.py -------------------------------------------------------------------------------- /stubs/setuptools.pyi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/stubs/setuptools.pyi -------------------------------------------------------------------------------- /test/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/test_action_on_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_action_on_model.py -------------------------------------------------------------------------------- /test/test_computed_first_in_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_computed_first_in_render.py -------------------------------------------------------------------------------- /test/test_computed_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_computed_property.py -------------------------------------------------------------------------------- /test/test_ignore_updates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_ignore_updates.py -------------------------------------------------------------------------------- /test/test_inheritance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_inheritance.py -------------------------------------------------------------------------------- /test/test_list_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_list_render.py -------------------------------------------------------------------------------- /test/test_merge_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_merge_model.py -------------------------------------------------------------------------------- /test/test_nested_lists_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_nested_lists_render.py -------------------------------------------------------------------------------- /test/test_nested_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_nested_render.py -------------------------------------------------------------------------------- /test/test_render.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_render.py -------------------------------------------------------------------------------- /test/test_serialization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/test/test_serialization.py -------------------------------------------------------------------------------- /versions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/germaniumhq/mopyx/HEAD/versions.yml --------------------------------------------------------------------------------