identityfunction 1.0.3__tar.gz → 1.0.5__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 (17) hide show
  1. {identityfunction-1.0.3/src/identityfunction.egg-info → identityfunction-1.0.5}/PKG-INFO +1 -1
  2. {identityfunction-1.0.3 → identityfunction-1.0.5}/pyproject.toml +2 -2
  3. identityfunction-1.0.5/src/identityfunction/tests/test_1984.py +10 -0
  4. {identityfunction-1.0.3 → identityfunction-1.0.5/src/identityfunction.egg-info}/PKG-INFO +1 -1
  5. {identityfunction-1.0.3 → identityfunction-1.0.5}/src/identityfunction.egg-info/SOURCES.txt +2 -1
  6. {identityfunction-1.0.3 → identityfunction-1.0.5}/LICENSE.txt +0 -0
  7. {identityfunction-1.0.3 → identityfunction-1.0.5}/MANIFEST.in +0 -0
  8. {identityfunction-1.0.3 → identityfunction-1.0.5}/README.rst +0 -0
  9. {identityfunction-1.0.3 → identityfunction-1.0.5}/setup.cfg +0 -0
  10. {identityfunction-1.0.3 → identityfunction-1.0.5}/src/identityfunction/__init__.py +0 -0
  11. {identityfunction-1.0.3 → identityfunction-1.0.5}/src/identityfunction/__main__.py +0 -0
  12. {identityfunction-1.0.3 → identityfunction-1.0.5}/src/identityfunction/core/__init__.py +0 -0
  13. {identityfunction-1.0.3 → identityfunction-1.0.5}/src/identityfunction/tests/__init__.py +0 -0
  14. {identityfunction-1.0.3 → identityfunction-1.0.5}/src/identityfunction/tests/test_0.py +0 -0
  15. {identityfunction-1.0.3 → identityfunction-1.0.5}/src/identityfunction.egg-info/dependency_links.txt +0 -0
  16. {identityfunction-1.0.3 → identityfunction-1.0.5}/src/identityfunction.egg-info/requires.txt +0 -0
  17. {identityfunction-1.0.3 → identityfunction-1.0.5}/src/identityfunction.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: identityfunction
3
- Version: 1.0.3
3
+ Version: 1.0.5
4
4
  Summary: This project provides the identity function.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -1,7 +1,7 @@
1
1
  [build-system]
2
2
  build-backend = "setuptools.build_meta"
3
3
  requires = [
4
- "setuptools>=61.0",
4
+ "setuptools>=64.0",
5
5
  ]
6
6
 
7
7
  [project]
@@ -28,7 +28,7 @@ keywords = []
28
28
  name = "identityfunction"
29
29
  readme = "README.rst"
30
30
  requires-python = ">=3.11"
31
- version = "1.0.3"
31
+ version = "1.0.5"
32
32
 
33
33
  [project.license]
34
34
  file = "LICENSE.txt"
@@ -0,0 +1,10 @@
1
+ import unittest
2
+
3
+
4
+ class Test1984(unittest.TestCase):
5
+ def test_1984(self):
6
+ self.assertEqual(2 + 2, 4, "Ignorance is Strength")
7
+
8
+
9
+ if __name__ == "__main__":
10
+ unittest.main()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: identityfunction
3
- Version: 1.0.3
3
+ Version: 1.0.5
4
4
  Summary: This project provides the identity function.
5
5
  Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
@@ -12,4 +12,5 @@ src/identityfunction.egg-info/requires.txt
12
12
  src/identityfunction.egg-info/top_level.txt
13
13
  src/identityfunction/core/__init__.py
14
14
  src/identityfunction/tests/__init__.py
15
- src/identityfunction/tests/test_0.py
15
+ src/identityfunction/tests/test_0.py
16
+ src/identityfunction/tests/test_1984.py