dummyfunction 1.1.2__tar.gz → 1.1.3__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. {dummyfunction-1.1.2/src/dummyfunction.egg-info → dummyfunction-1.1.3}/PKG-INFO +1 -1
  2. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/pyproject.toml +1 -1
  3. dummyfunction-1.1.3/src/dummyfunction/__init__.py +6 -0
  4. {dummyfunction-1.1.2 → dummyfunction-1.1.3/src/dummyfunction.egg-info}/PKG-INFO +1 -1
  5. dummyfunction-1.1.2/src/dummyfunction/__init__.py +0 -5
  6. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/LICENSE.txt +0 -0
  7. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/MANIFEST.in +0 -0
  8. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/README.rst +0 -0
  9. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/docs/v1.0.rst +0 -0
  10. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/docs/v1.1.rst +0 -0
  11. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/setup.cfg +0 -0
  12. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/src/dummyfunction/__main__.py +0 -0
  13. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/src/dummyfunction/core/__init__.py +0 -0
  14. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/src/dummyfunction/py.typed +0 -0
  15. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/src/dummyfunction/tests/__init__.py +0 -0
  16. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/src/dummyfunction/tests/test_TestDummyFunction.py +0 -0
  17. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/src/dummyfunction.egg-info/SOURCES.txt +0 -0
  18. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/src/dummyfunction.egg-info/dependency_links.txt +0 -0
  19. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/src/dummyfunction.egg-info/requires.txt +0 -0
  20. {dummyfunction-1.1.2 → dummyfunction-1.1.3}/src/dummyfunction.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dummyfunction
3
- Version: 1.1.2
3
+ Version: 1.1.3
4
4
  Summary: This project provides the dummy function.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License-Expression: MIT
@@ -31,7 +31,7 @@ license-files = [
31
31
  name = "dummyfunction"
32
32
  readme = "README.rst"
33
33
  requires-python = ">=3.11"
34
- version = "1.1.2"
34
+ version = "1.1.3"
35
35
 
36
36
  [project.urls]
37
37
  Download = "https://pypi.org/project/dummyfunction/#files"
@@ -0,0 +1,6 @@
1
+ from dummyfunction.core import dummyfunction, main
2
+
3
+ __all__ = ["dummyfunction", "main"]
4
+
5
+ if __name__ == "__main__":
6
+ main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dummyfunction
3
- Version: 1.1.2
3
+ Version: 1.1.3
4
4
  Summary: This project provides the dummy function.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License-Expression: MIT
@@ -1,5 +0,0 @@
1
- from dummyfunction.core import *
2
- from dummyfunction.tests import *
3
-
4
- if __name__ == "__main__":
5
- main()
File without changes
File without changes
File without changes
File without changes