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.
- jacobus-0.0.0.dev0/LICENSE.txt +21 -0
- jacobus-0.0.0.dev0/MANIFEST.in +2 -0
- jacobus-0.0.0.dev0/PKG-INFO +27 -0
- jacobus-0.0.0.dev0/README.rst +7 -0
- jacobus-0.0.0.dev0/pyproject.toml +41 -0
- jacobus-0.0.0.dev0/setup.cfg +4 -0
- jacobus-0.0.0.dev0/src/jacobus/__init__.py +5 -0
- jacobus-0.0.0.dev0/src/jacobus/__main__.py +4 -0
- jacobus-0.0.0.dev0/src/jacobus/core/__init__.py +8 -0
- jacobus-0.0.0.dev0/src/jacobus/tests/__init__.py +11 -0
- jacobus-0.0.0.dev0/src/jacobus/tests/test_1984.py +13 -0
- jacobus-0.0.0.dev0/src/jacobus.egg-info/PKG-INFO +27 -0
- jacobus-0.0.0.dev0/src/jacobus.egg-info/SOURCES.txt +14 -0
- jacobus-0.0.0.dev0/src/jacobus.egg-info/dependency_links.txt +1 -0
- jacobus-0.0.0.dev0/src/jacobus.egg-info/top_level.txt +1 -0
|
@@ -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,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,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,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
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
jacobus
|