apywire 1.0.2__tar.gz → 1.0.4__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 (40) hide show
  1. {apywire-1.0.2/apywire.egg-info → apywire-1.0.4}/PKG-INFO +3 -1
  2. {apywire-1.0.2 → apywire-1.0.4/apywire.egg-info}/PKG-INFO +3 -1
  3. {apywire-1.0.2 → apywire-1.0.4}/apywire.egg-info/requires.txt +2 -0
  4. {apywire-1.0.2 → apywire-1.0.4}/pyproject.toml +3 -1
  5. {apywire-1.0.2 → apywire-1.0.4}/LICENSE +0 -0
  6. {apywire-1.0.2 → apywire-1.0.4}/MANIFEST.in +0 -0
  7. {apywire-1.0.2 → apywire-1.0.4}/README.md +0 -0
  8. {apywire-1.0.2 → apywire-1.0.4}/apywire/__init__.py +0 -0
  9. {apywire-1.0.2 → apywire-1.0.4}/apywire/__main__.py +0 -0
  10. {apywire-1.0.2 → apywire-1.0.4}/apywire/compiler.py +0 -0
  11. {apywire-1.0.2 → apywire-1.0.4}/apywire/constants.py +0 -0
  12. {apywire-1.0.2 → apywire-1.0.4}/apywire/exceptions.py +0 -0
  13. {apywire-1.0.2 → apywire-1.0.4}/apywire/formats.py +0 -0
  14. {apywire-1.0.2 → apywire-1.0.4}/apywire/generator.py +0 -0
  15. {apywire-1.0.2 → apywire-1.0.4}/apywire/py.typed +0 -0
  16. {apywire-1.0.2 → apywire-1.0.4}/apywire/runtime.py +0 -0
  17. {apywire-1.0.2 → apywire-1.0.4}/apywire/threads.py +0 -0
  18. {apywire-1.0.2 → apywire-1.0.4}/apywire/wiring.c +0 -0
  19. {apywire-1.0.2 → apywire-1.0.4}/apywire/wiring.py +0 -0
  20. {apywire-1.0.2 → apywire-1.0.4}/apywire.egg-info/SOURCES.txt +0 -0
  21. {apywire-1.0.2 → apywire-1.0.4}/apywire.egg-info/dependency_links.txt +0 -0
  22. {apywire-1.0.2 → apywire-1.0.4}/apywire.egg-info/top_level.txt +0 -0
  23. {apywire-1.0.2 → apywire-1.0.4}/examples/basic_app/app.py +0 -0
  24. {apywire-1.0.2 → apywire-1.0.4}/examples/kv_store/main.py +0 -0
  25. {apywire-1.0.2 → apywire-1.0.4}/setup.cfg +0 -0
  26. {apywire-1.0.2 → apywire-1.0.4}/setup.py +0 -0
  27. {apywire-1.0.2 → apywire-1.0.4}/tests/__init__.py +0 -0
  28. {apywire-1.0.2 → apywire-1.0.4}/tests/test_cli.py +0 -0
  29. {apywire-1.0.2 → apywire-1.0.4}/tests/test_compile_aio.py +0 -0
  30. {apywire-1.0.2 → apywire-1.0.4}/tests/test_constant_placeholders.py +0 -0
  31. {apywire-1.0.2 → apywire-1.0.4}/tests/test_dataclasses.py +0 -0
  32. {apywire-1.0.2 → apywire-1.0.4}/tests/test_edge_cases.py +0 -0
  33. {apywire-1.0.2 → apywire-1.0.4}/tests/test_exceptions.py +0 -0
  34. {apywire-1.0.2 → apywire-1.0.4}/tests/test_factory_methods.py +0 -0
  35. {apywire-1.0.2 → apywire-1.0.4}/tests/test_formats.py +0 -0
  36. {apywire-1.0.2 → apywire-1.0.4}/tests/test_generator.py +0 -0
  37. {apywire-1.0.2 → apywire-1.0.4}/tests/test_internals.py +0 -0
  38. {apywire-1.0.2 → apywire-1.0.4}/tests/test_single.py +0 -0
  39. {apywire-1.0.2 → apywire-1.0.4}/tests/test_stdlib_compat.py +0 -0
  40. {apywire-1.0.2 → apywire-1.0.4}/tests/test_threading.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apywire
3
- Version: 1.0.2
3
+ Version: 1.0.4
4
4
  Summary: A package to wire up objects
5
5
  Author-email: Alexandre Gomes Gaigalas <alganet@gmail.com>
6
6
  Maintainer-email: Alexandre Gomes Gaigalas <alganet@gmail.com>
@@ -34,6 +34,8 @@ Requires-Dist: mkdocs-material; extra == "dev"
34
34
  Requires-Dist: mkdocs; extra == "dev"
35
35
  Requires-Dist: mkdocstrings[python]; extra == "dev"
36
36
  Requires-Dist: mypy; extra == "dev"
37
+ Requires-Dist: pygments>=2.20; extra == "dev"
38
+ Requires-Dist: pymdown-extensions>=10.21.2; extra == "dev"
37
39
  Requires-Dist: pytest-cov; extra == "dev"
38
40
  Requires-Dist: pytest; extra == "dev"
39
41
  Requires-Dist: reuse; extra == "dev"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: apywire
3
- Version: 1.0.2
3
+ Version: 1.0.4
4
4
  Summary: A package to wire up objects
5
5
  Author-email: Alexandre Gomes Gaigalas <alganet@gmail.com>
6
6
  Maintainer-email: Alexandre Gomes Gaigalas <alganet@gmail.com>
@@ -34,6 +34,8 @@ Requires-Dist: mkdocs-material; extra == "dev"
34
34
  Requires-Dist: mkdocs; extra == "dev"
35
35
  Requires-Dist: mkdocstrings[python]; extra == "dev"
36
36
  Requires-Dist: mypy; extra == "dev"
37
+ Requires-Dist: pygments>=2.20; extra == "dev"
38
+ Requires-Dist: pymdown-extensions>=10.21.2; extra == "dev"
37
39
  Requires-Dist: pytest-cov; extra == "dev"
38
40
  Requires-Dist: pytest; extra == "dev"
39
41
  Requires-Dist: reuse; extra == "dev"
@@ -14,6 +14,8 @@ mkdocs-material
14
14
  mkdocs
15
15
  mkdocstrings[python]
16
16
  mypy
17
+ pygments>=2.20
18
+ pymdown-extensions>=10.21.2
17
19
  pytest-cov
18
20
  pytest
19
21
  reuse
@@ -8,7 +8,7 @@ build-backend = "setuptools.build_meta"
8
8
 
9
9
  [project]
10
10
  name = "apywire"
11
- version = "1.0.2"
11
+ version = "1.0.4"
12
12
  description = "A package to wire up objects"
13
13
  readme = "README.md"
14
14
  license = "ISC"
@@ -48,6 +48,8 @@ dev = [
48
48
  "mkdocs",
49
49
  "mkdocstrings[python]",
50
50
  "mypy",
51
+ "pygments>=2.20",
52
+ "pymdown-extensions>=10.21.2",
51
53
  "pytest-cov",
52
54
  "pytest",
53
55
  "reuse",
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
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