jacobus 0.0.0.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.
@@ -0,0 +1,21 @@
1
+ The MIT License (MIT)
2
+
3
+ Copyright (c) 2026 Johannes
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
@@ -0,0 +1,2 @@
1
+ recursive-include docs *.rst
2
+ recursive-include src/jacobus *.toml
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: jacobus
3
+ Version: 0.0.0.dev0
4
+ Summary: jacobus
5
+ Author-email: Johannes <johannes.programming@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Download, https://pypi.org/project/jacobus/#files
8
+ Project-URL: Index, https://pypi.org/project/jacobus/
9
+ Project-URL: Source, https://github.com/johannes-programming/jacobus/
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Natural Language :: English
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Requires-Python: >=3.11
17
+ Description-Content-Type: text/x-rst
18
+ License-File: LICENSE.txt
19
+ Dynamic: license-file
20
+
21
+ =======
22
+ jacobus
23
+ =======
24
+
25
+ Each minor version has its own documentation.
26
+ These docs can be found as rst-files in the ``docs/`` directory of this project.
27
+ They can also be viewed on the website `https://jacobus.johannes-programming.online/ <https://jacobus.johannes-programming.online/>`_.
@@ -0,0 +1,7 @@
1
+ =======
2
+ jacobus
3
+ =======
4
+
5
+ Each minor version has its own documentation.
6
+ These docs can be found as rst-files in the ``docs/`` directory of this project.
7
+ They can also be viewed on the website `https://jacobus.johannes-programming.online/ <https://jacobus.johannes-programming.online/>`_.
@@ -0,0 +1,41 @@
1
+ [build-system]
2
+ build-backend = "setuptools.build_meta"
3
+ requires = [
4
+ "setuptools>=77.0",
5
+ ]
6
+
7
+ [project]
8
+ authors = [
9
+ { email = "johannes.programming@gmail.com", name = "Johannes" },
10
+ ]
11
+ classifiers = [
12
+ "Development Status :: 2 - Pre-Alpha",
13
+ "Natural Language :: English",
14
+ "Operating System :: OS Independent",
15
+ "Programming Language :: Python",
16
+ "Programming Language :: Python :: 3",
17
+ "Programming Language :: Python :: 3 :: Only",
18
+ ]
19
+ dependencies = []
20
+ description = "jacobus"
21
+ keywords = []
22
+ license = "MIT"
23
+ license-files = [
24
+ "LICENSE.txt",
25
+ ]
26
+ name = "jacobus"
27
+ readme = "README.rst"
28
+ requires-python = ">=3.11"
29
+ version = "0.0.0.dev0"
30
+
31
+ [project.urls]
32
+ Download = "https://pypi.org/project/jacobus/#files"
33
+ Index = "https://pypi.org/project/jacobus/"
34
+ Source = "https://github.com/johannes-programming/jacobus/"
35
+
36
+ [tool.mypy]
37
+ files = [
38
+ ".",
39
+ ]
40
+ python_version = "3.11"
41
+ strict = false
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ from jacobus.core import *
2
+ from jacobus.tests import *
3
+
4
+ if __name__ == "__main__":
5
+ main()
@@ -0,0 +1,4 @@
1
+ from jacobus import main
2
+
3
+ if __name__ == "__main__":
4
+ main()
@@ -0,0 +1,8 @@
1
+ from typing import *
2
+
3
+ __all__ = ["main"]
4
+
5
+
6
+ def main(args: Optional[Iterable] = None) -> None:
7
+ "This function prints 'Hello World!'."
8
+ print("Hello World!")
@@ -0,0 +1,11 @@
1
+ import unittest
2
+
3
+ __all__ = ["test"]
4
+
5
+
6
+ def test() -> unittest.TextTestResult:
7
+ loader: unittest.TestLoader
8
+ tests: unittest.TestSuite
9
+ loader = unittest.TestLoader()
10
+ tests = loader.discover(start_dir="jacobus.tests")
11
+ return unittest.TextTestRunner().run(tests)
@@ -0,0 +1,13 @@
1
+ import unittest
2
+ from typing import *
3
+
4
+ __all__ = ["Test1984"]
5
+
6
+
7
+ class Test1984(unittest.TestCase):
8
+ def test_1984(self: Self) -> None:
9
+ self.assertEqual(2 + 2, 4, "Ignorance is Strength")
10
+
11
+
12
+ if __name__ == "__main__":
13
+ unittest.main()
@@ -0,0 +1,27 @@
1
+ Metadata-Version: 2.4
2
+ Name: jacobus
3
+ Version: 0.0.0.dev0
4
+ Summary: jacobus
5
+ Author-email: Johannes <johannes.programming@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Download, https://pypi.org/project/jacobus/#files
8
+ Project-URL: Index, https://pypi.org/project/jacobus/
9
+ Project-URL: Source, https://github.com/johannes-programming/jacobus/
10
+ Classifier: Development Status :: 2 - Pre-Alpha
11
+ Classifier: Natural Language :: English
12
+ Classifier: Operating System :: OS Independent
13
+ Classifier: Programming Language :: Python
14
+ Classifier: Programming Language :: Python :: 3
15
+ Classifier: Programming Language :: Python :: 3 :: Only
16
+ Requires-Python: >=3.11
17
+ Description-Content-Type: text/x-rst
18
+ License-File: LICENSE.txt
19
+ Dynamic: license-file
20
+
21
+ =======
22
+ jacobus
23
+ =======
24
+
25
+ Each minor version has its own documentation.
26
+ These docs can be found as rst-files in the ``docs/`` directory of this project.
27
+ They can also be viewed on the website `https://jacobus.johannes-programming.online/ <https://jacobus.johannes-programming.online/>`_.
@@ -0,0 +1,14 @@
1
+ LICENSE.txt
2
+ MANIFEST.in
3
+ README.rst
4
+ pyproject.toml
5
+ setup.cfg
6
+ src/jacobus/__init__.py
7
+ src/jacobus/__main__.py
8
+ src/jacobus.egg-info/PKG-INFO
9
+ src/jacobus.egg-info/SOURCES.txt
10
+ src/jacobus.egg-info/dependency_links.txt
11
+ src/jacobus.egg-info/top_level.txt
12
+ src/jacobus/core/__init__.py
13
+ src/jacobus/tests/__init__.py
14
+ src/jacobus/tests/test_1984.py
@@ -0,0 +1 @@
1
+ jacobus