mixinv2 0.3.0.post1.dev0__tar.gz → 0.3.0.post5.dev0__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.
Files changed (20) hide show
  1. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/PKG-INFO +1 -1
  2. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/docs/index.rst +1 -1
  3. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/docs/specification.md +1 -1
  4. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/.gitignore +0 -0
  5. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/README.md +0 -0
  6. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/docs/Makefile +0 -0
  7. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/docs/_static/favicon.svg +0 -0
  8. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/docs/_static/logo.svg +0 -0
  9. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/docs/conf.py +0 -0
  10. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/docs/installation.rst +0 -0
  11. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/docs/mixinv2-tutorial.rst +0 -0
  12. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/docs/tutorial.rst +0 -0
  13. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/pyproject.toml +0 -0
  14. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/src/mixinv2/__init__.py +0 -0
  15. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/src/mixinv2/_config.py +0 -0
  16. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/src/mixinv2/_core.py +0 -0
  17. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/src/mixinv2/_interned_linked_list.py +0 -0
  18. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/src/mixinv2/_mixin_directory.py +0 -0
  19. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/src/mixinv2/_mixin_parser.py +0 -0
  20. {mixinv2-0.3.0.post1.dev0 → mixinv2-0.3.0.post5.dev0}/src/mixinv2/_runtime.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mixinv2
3
- Version: 0.3.0.post1.dev0
3
+ Version: 0.3.0.post5.dev0
4
4
  Summary: A dependency injection framework with pytest-fixture syntax, plus a configuration language for declarative programming
5
5
  Project-URL: Repository, https://github.com/Atry/overlay
6
6
  Author-email: "Yang, Bo" <yang-bo@yang-bo.com>
@@ -13,7 +13,7 @@ App-scoped singletons and per-request resources coexist naturally.
13
13
  See :doc:`tutorial`.
14
14
 
15
15
  **MIXINv2** is a configuration language written in ``.mixin.yaml`` /
16
- ``.mixin.json`` / ``.mixin.toml`` files (also ``.oyaml`` / ``.ojson`` / ``.otoml``). SQL queries, format strings, URL patterns — all
16
+ ``.mixin.json`` / ``.mixin.toml`` files. SQL queries, format strings, URL patterns — all
17
17
  the business decisions that clutter Python code — live in MIXINv2
18
18
  instead, where independent modules deep-merge by name without glue code —
19
19
  immune to the `Expression Problem <https://en.wikipedia.org/wiki/Expression_problem>`_.
@@ -2,7 +2,7 @@
2
2
 
3
3
  ## 1. Introduction
4
4
 
5
- MIXINv2 is a programming language designed to facilitate the flexible composition and configuration of logic and data structures through the use of _overlays_. Unlike traditional programming languages that use classes or functions as the primary building blocks, MIXINv2 employs a unified concept where everything is represented as an overlay. This approach allows for greater modularity, reusability, and flexibility.
5
+ MIXINv2 is the successor of [MIXIN](https://github.com/Atry/MIXIN). It is a programming language designed to facilitate the flexible composition and configuration of logic and data structures through the use of _overlays_. Unlike traditional programming languages that use classes or functions as the primary building blocks, MIXINv2 employs a unified concept where everything is represented as an overlay. This approach allows for greater modularity, reusability, and flexibility.
6
6
 
7
7
  MIXINv2 is a lazily-evaluated, immutable language, meaning that values are only computed when necessary, and once created, they cannot be changed. This design makes MIXINv2 particularly well-suited for applications that require functional purity, such as configuration management, domain-specific language (DSL) creation, and code generation.
8
8