mixinv2 0.3.0.post5.dev0__tar.gz → 0.3.0.post12.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.
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/PKG-INFO +2 -2
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/README.md +1 -1
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/docs/Makefile +1 -1
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/docs/conf.py +2 -2
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/pyproject.toml +2 -2
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/.gitignore +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/docs/_static/favicon.svg +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/docs/_static/logo.svg +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/docs/index.rst +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/docs/installation.rst +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/docs/mixinv2-tutorial.rst +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/docs/specification.md +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/docs/tutorial.rst +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/src/mixinv2/__init__.py +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/src/mixinv2/_config.py +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/src/mixinv2/_core.py +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/src/mixinv2/_interned_linked_list.py +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/src/mixinv2/_mixin_directory.py +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/src/mixinv2/_mixin_parser.py +0 -0
- {mixinv2-0.3.0.post5.dev0 → mixinv2-0.3.0.post12.dev0}/src/mixinv2/_runtime.py +0 -0
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mixinv2
|
|
3
|
-
Version: 0.3.0.
|
|
3
|
+
Version: 0.3.0.post12.dev0
|
|
4
4
|
Summary: A dependency injection framework with pytest-fixture syntax, plus a configuration language for declarative programming
|
|
5
|
-
Project-URL: Repository, https://github.com/Atry/
|
|
5
|
+
Project-URL: Repository, https://github.com/Atry/MIXINv2
|
|
6
6
|
Author-email: "Yang, Bo" <yang-bo@yang-bo.com>
|
|
7
7
|
License-Expression: MIT
|
|
8
8
|
Classifier: Development Status :: 3 - Alpha
|
|
@@ -10,7 +10,7 @@ Full documentation is available at [mixinv2.readthedocs.io](https://mixinv2.read
|
|
|
10
10
|
|
|
11
11
|
## Source Code
|
|
12
12
|
|
|
13
|
-
The source code is hosted on [GitHub](https://github.com/Atry/
|
|
13
|
+
The source code is hosted on [GitHub](https://github.com/Atry/MIXINv2).
|
|
14
14
|
|
|
15
15
|
## License
|
|
16
16
|
|
|
@@ -53,7 +53,7 @@ html_theme_options = {
|
|
|
53
53
|
'logo': 'logo.svg',
|
|
54
54
|
'fixed_sidebar': True,
|
|
55
55
|
'github_user': 'Atry',
|
|
56
|
-
'github_repo': '
|
|
56
|
+
'github_repo': 'MIXINv2',
|
|
57
57
|
'github_banner': True,
|
|
58
58
|
'github_button': True,
|
|
59
59
|
'github_type': 'watch',
|
|
@@ -68,7 +68,7 @@ _git_commit = subprocess.check_output(
|
|
|
68
68
|
|
|
69
69
|
extlinks = {
|
|
70
70
|
'github': (
|
|
71
|
-
f'https://github.com/Atry/
|
|
71
|
+
f'https://github.com/Atry/MIXINv2/tree/{_git_commit}/%s',
|
|
72
72
|
'%s',
|
|
73
73
|
),
|
|
74
74
|
}
|
|
@@ -9,7 +9,7 @@ source = "uv-dynamic-versioning"
|
|
|
9
9
|
vcs = "git"
|
|
10
10
|
style = "pep440"
|
|
11
11
|
bump = false
|
|
12
|
-
fallback-version = "0.
|
|
12
|
+
fallback-version = "0.0.0.dev0"
|
|
13
13
|
metadata = false
|
|
14
14
|
|
|
15
15
|
[project]
|
|
@@ -43,4 +43,4 @@ only-include = ["src/mixinv2"]
|
|
|
43
43
|
sources = ["src"]
|
|
44
44
|
|
|
45
45
|
[project.urls]
|
|
46
|
-
Repository = "https://github.com/Atry/
|
|
46
|
+
Repository = "https://github.com/Atry/MIXINv2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|