dummyfunction 1.1.2__tar.gz → 1.1.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 (20) hide show
  1. {dummyfunction-1.1.2/src/dummyfunction.egg-info → dummyfunction-1.1.4}/PKG-INFO +1 -1
  2. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/pyproject.toml +1 -1
  3. dummyfunction-1.1.4/src/dummyfunction/__init__.py +6 -0
  4. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/src/dummyfunction/core/__init__.py +1 -1
  5. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/src/dummyfunction/tests/__init__.py +1 -5
  6. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/src/dummyfunction/tests/test_TestDummyFunction.py +1 -1
  7. {dummyfunction-1.1.2 → dummyfunction-1.1.4/src/dummyfunction.egg-info}/PKG-INFO +1 -1
  8. dummyfunction-1.1.2/src/dummyfunction/__init__.py +0 -5
  9. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/LICENSE.txt +0 -0
  10. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/MANIFEST.in +0 -0
  11. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/README.rst +0 -0
  12. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/docs/v1.0.rst +0 -0
  13. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/docs/v1.1.rst +0 -0
  14. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/setup.cfg +0 -0
  15. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/src/dummyfunction/__main__.py +0 -0
  16. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/src/dummyfunction/py.typed +0 -0
  17. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/src/dummyfunction.egg-info/SOURCES.txt +0 -0
  18. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/src/dummyfunction.egg-info/dependency_links.txt +0 -0
  19. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/src/dummyfunction.egg-info/requires.txt +0 -0
  20. {dummyfunction-1.1.2 → dummyfunction-1.1.4}/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.4
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.4"
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,4 +1,4 @@
1
- from typing import *
1
+ from collections.abc import Iterable
2
2
 
3
3
  import click
4
4
  import preparse
@@ -7,10 +7,6 @@ def test() -> unittest.TextTestResult:
7
7
  "This function runs all the tests."
8
8
  loader: unittest.TestLoader
9
9
  tests: unittest.TestSuite
10
- runner: unittest.TextTestRunner
11
- result: unittest.TextTestResult
12
10
  loader = unittest.TestLoader()
13
11
  tests = loader.discover(start_dir="dummyfunction.tests")
14
- runner = unittest.TextTestRunner()
15
- result = runner.run(tests)
16
- return result
12
+ return unittest.TextTestRunner().run(tests)
@@ -1,5 +1,5 @@
1
1
  import unittest
2
- from typing import *
2
+ from typing import Self
3
3
 
4
4
  from dummyfunction.core import dummyfunction
5
5
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dummyfunction
3
- Version: 1.1.2
3
+ Version: 1.1.4
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