dummyfunction 1.0.5__tar.gz → 1.0.7__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.
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
18
  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
19
  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
20
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
21
+ SOFTWARE.
@@ -0,0 +1,2 @@
1
+ recursive-include docs *.rst
2
+ recursive-include src/dummyfunction *.toml
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: dummyfunction
3
+ Version: 1.0.7
4
+ Summary: This project provides the dummy function.
5
+ Author-email: Johannes <johannes.programming@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Download, https://pypi.org/project/dummyfunction/#files
8
+ Project-URL: Index, https://pypi.org/project/dummyfunction/
9
+ Project-URL: Source, https://github.com/johannes-programming/dummyfunction/
10
+ Project-URL: Website, https://dummyfunction.johannes-programming.online/
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Natural Language :: English
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3 :: Only
18
+ Classifier: Typing :: Typed
19
+ Requires-Python: >=3.11
20
+ Description-Content-Type: text/x-rst
21
+ License-File: LICENSE.txt
22
+ Dynamic: license-file
23
+
24
+ =============
25
+ dummyfunction
26
+ =============
27
+
28
+ Each minor version has its own documentation.
29
+ These docs can be found as rst-files in the ``docs/`` directory of this project.
30
+ They can also be viewed on the website `https://dummyfunction.johannes-programming.online/ <https://dummyfunction.johannes-programming.online/>`_.
@@ -0,0 +1,7 @@
1
+ =============
2
+ dummyfunction
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://dummyfunction.johannes-programming.online/ <https://dummyfunction.johannes-programming.online/>`_.
@@ -0,0 +1,55 @@
1
+ Introduction
2
+ ------------
3
+
4
+ This project provides the ``dummyfunction``.
5
+
6
+ Installation
7
+ ------------
8
+
9
+ To install ``dummyfunction``, you can use ``pip``.
10
+ Open your terminal and run:
11
+
12
+ .. code-block:: shell
13
+
14
+ pip install dummyfunction
15
+
16
+ Features
17
+ --------
18
+
19
+ ``dummyfunction.dummyfunction(*args: object, **kwargs: object) -> None``
20
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
21
+
22
+ This function does nothing.
23
+
24
+ ``dummyfunction.tests.test() -> unittest.TextTestResult``
25
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
26
+
27
+ This project can be tested through its ``test`` function.
28
+
29
+ .. code-block:: python
30
+
31
+ import dummyfunction.tests
32
+ dummyfunction.tests.test()
33
+
34
+ License
35
+ -------
36
+
37
+ This project is licensed under the MIT License.
38
+
39
+ Links
40
+ -----
41
+
42
+ - Download: https://pypi.org/project/dummyfunction/#files
43
+ - Index: https://pypi.org/project/dummyfunction/
44
+ - Source: https://github.com/johannes-programming/dummyfunction/
45
+ - Website: https://dummyfunction.johannes-programming.online/
46
+
47
+ Impressum
48
+ ---------
49
+
50
+ **Johannes Programming**
51
+
52
+ - Name: Johannes
53
+ - Email: johannes.programming@gmail.com
54
+ - Homepage: https://www.johannes-programming.online/
55
+ - Gravatar: https://www.johannes-programming.fyi/
@@ -1,7 +1,7 @@
1
1
  [build-system]
2
2
  build-backend = "setuptools.build_meta"
3
3
  requires = [
4
- "setuptools>=61.0",
4
+ "setuptools>=77.0",
5
5
  ]
6
6
 
7
7
  [project]
@@ -11,7 +11,6 @@ authors = [
11
11
  classifiers = [
12
12
  "Development Status :: 5 - Production/Stable",
13
13
  "Intended Audience :: Developers",
14
- "License :: OSI Approved :: MIT License",
15
14
  "Natural Language :: English",
16
15
  "Operating System :: OS Independent",
17
16
  "Programming Language :: Python",
@@ -19,22 +18,30 @@ classifiers = [
19
18
  "Programming Language :: Python :: 3 :: Only",
20
19
  "Typing :: Typed",
21
20
  ]
22
- dependencies = [
23
- "click>=8.2,<9",
24
- "preparse>=0.1.6,<2",
25
- ]
21
+ dependencies = []
26
22
  description = "This project provides the dummy function."
27
23
  keywords = []
24
+ license = "MIT"
25
+ license-files = [
26
+ "LICENSE.txt",
27
+ ]
28
28
  name = "dummyfunction"
29
29
  readme = "README.rst"
30
30
  requires-python = ">=3.11"
31
- version = "1.0.5"
32
-
33
- [project.license]
34
- file = "LICENSE.txt"
31
+ version = "1.0.7"
35
32
 
36
33
  [project.urls]
37
34
  Download = "https://pypi.org/project/dummyfunction/#files"
38
35
  Index = "https://pypi.org/project/dummyfunction/"
39
36
  Source = "https://github.com/johannes-programming/dummyfunction/"
40
37
  Website = "https://dummyfunction.johannes-programming.online/"
38
+
39
+ [tool.mypy]
40
+ files = [
41
+ ".",
42
+ ]
43
+ overrides = [
44
+ { module = [], ignore_missing_imports = true },
45
+ ]
46
+ python_version = "3.11"
47
+ strict = false
@@ -0,0 +1 @@
1
+ from dummyfunction.core import *
@@ -0,0 +1,8 @@
1
+ from typing import *
2
+
3
+ __all__ = ["dummyfunction"]
4
+
5
+
6
+ def dummyfunction(*args: object, **kwargs: object) -> None:
7
+ "This function does nothing."
8
+ pass
@@ -0,0 +1,30 @@
1
+ Metadata-Version: 2.4
2
+ Name: dummyfunction
3
+ Version: 1.0.7
4
+ Summary: This project provides the dummy function.
5
+ Author-email: Johannes <johannes.programming@gmail.com>
6
+ License-Expression: MIT
7
+ Project-URL: Download, https://pypi.org/project/dummyfunction/#files
8
+ Project-URL: Index, https://pypi.org/project/dummyfunction/
9
+ Project-URL: Source, https://github.com/johannes-programming/dummyfunction/
10
+ Project-URL: Website, https://dummyfunction.johannes-programming.online/
11
+ Classifier: Development Status :: 5 - Production/Stable
12
+ Classifier: Intended Audience :: Developers
13
+ Classifier: Natural Language :: English
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Programming Language :: Python
16
+ Classifier: Programming Language :: Python :: 3
17
+ Classifier: Programming Language :: Python :: 3 :: Only
18
+ Classifier: Typing :: Typed
19
+ Requires-Python: >=3.11
20
+ Description-Content-Type: text/x-rst
21
+ License-File: LICENSE.txt
22
+ Dynamic: license-file
23
+
24
+ =============
25
+ dummyfunction
26
+ =============
27
+
28
+ Each minor version has its own documentation.
29
+ These docs can be found as rst-files in the ``docs/`` directory of this project.
30
+ They can also be viewed on the website `https://dummyfunction.johannes-programming.online/ <https://dummyfunction.johannes-programming.online/>`_.
@@ -3,12 +3,12 @@ MANIFEST.in
3
3
  README.rst
4
4
  pyproject.toml
5
5
  setup.cfg
6
+ docs/v1.0.rst
6
7
  src/dummyfunction/__init__.py
7
- src/dummyfunction/__main__.py
8
+ src/dummyfunction/py.typed
8
9
  src/dummyfunction.egg-info/PKG-INFO
9
10
  src/dummyfunction.egg-info/SOURCES.txt
10
11
  src/dummyfunction.egg-info/dependency_links.txt
11
- src/dummyfunction.egg-info/requires.txt
12
12
  src/dummyfunction.egg-info/top_level.txt
13
13
  src/dummyfunction/core/__init__.py
14
14
  src/dummyfunction/tests/__init__.py
@@ -1,51 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: dummyfunction
3
- Version: 1.0.5
4
- Summary: This project provides the dummy function.
5
- Author-email: Johannes <johannes.programming@gmail.com>
6
- License: The MIT License (MIT)
7
-
8
- Copyright (c) 2025 Johannes
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in all
18
- copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- SOFTWARE.
27
- Project-URL: Download, https://pypi.org/project/dummyfunction/#files
28
- Project-URL: Index, https://pypi.org/project/dummyfunction/
29
- Project-URL: Source, https://github.com/johannes-programming/dummyfunction/
30
- Project-URL: Website, https://dummyfunction.johannes-programming.online/
31
- Classifier: Development Status :: 5 - Production/Stable
32
- Classifier: Intended Audience :: Developers
33
- Classifier: License :: OSI Approved :: MIT License
34
- Classifier: Natural Language :: English
35
- Classifier: Operating System :: OS Independent
36
- Classifier: Programming Language :: Python
37
- Classifier: Programming Language :: Python :: 3
38
- Classifier: Programming Language :: Python :: 3 :: Only
39
- Classifier: Typing :: Typed
40
- Requires-Python: >=3.11
41
- Description-Content-Type: text/x-rst
42
- License-File: LICENSE.txt
43
- Requires-Dist: click<9,>=8.2
44
- Requires-Dist: preparse<2,>=0.1.6
45
- Dynamic: license-file
46
-
47
- =============
48
- dummyfunction
49
- =============
50
-
51
- Visit the website `https://dummyfunction.johannes-programming.online/ <https://dummyfunction.johannes-programming.online/>`_ for more information.
@@ -1,5 +0,0 @@
1
- =============
2
- dummyfunction
3
- =============
4
-
5
- Visit the website `https://dummyfunction.johannes-programming.online/ <https://dummyfunction.johannes-programming.online/>`_ for more information.
@@ -1,5 +0,0 @@
1
- from dummyfunction.core import *
2
- from dummyfunction.tests import *
3
-
4
- if __name__ == "__main__":
5
- main()
@@ -1,4 +0,0 @@
1
- from dummyfunction import main
2
-
3
- if __name__ == "__main__":
4
- main()
@@ -1,21 +0,0 @@
1
- from typing import *
2
-
3
- import click
4
- import preparse
5
-
6
- __all__ = ["dummyfunction", "main"]
7
-
8
-
9
- def dummyfunction(*args: Any, **kwargs: Any) -> None:
10
- "This function does nothing."
11
- pass
12
-
13
-
14
- @preparse.PreParser().click()
15
- @click.command(add_help_option=False)
16
- @click.help_option("-h", "--help")
17
- @click.version_option(None, "-V", "--version")
18
- @click.argument("args", nargs=-1, type=str)
19
- def main(args: Iterable[str]) -> None:
20
- "This command does nothing."
21
- pass
@@ -1,51 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: dummyfunction
3
- Version: 1.0.5
4
- Summary: This project provides the dummy function.
5
- Author-email: Johannes <johannes.programming@gmail.com>
6
- License: The MIT License (MIT)
7
-
8
- Copyright (c) 2025 Johannes
9
-
10
- Permission is hereby granted, free of charge, to any person obtaining a copy
11
- of this software and associated documentation files (the "Software"), to deal
12
- in the Software without restriction, including without limitation the rights
13
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
14
- copies of the Software, and to permit persons to whom the Software is
15
- furnished to do so, subject to the following conditions:
16
-
17
- The above copyright notice and this permission notice shall be included in all
18
- copies or substantial portions of the Software.
19
-
20
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
23
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
24
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
26
- SOFTWARE.
27
- Project-URL: Download, https://pypi.org/project/dummyfunction/#files
28
- Project-URL: Index, https://pypi.org/project/dummyfunction/
29
- Project-URL: Source, https://github.com/johannes-programming/dummyfunction/
30
- Project-URL: Website, https://dummyfunction.johannes-programming.online/
31
- Classifier: Development Status :: 5 - Production/Stable
32
- Classifier: Intended Audience :: Developers
33
- Classifier: License :: OSI Approved :: MIT License
34
- Classifier: Natural Language :: English
35
- Classifier: Operating System :: OS Independent
36
- Classifier: Programming Language :: Python
37
- Classifier: Programming Language :: Python :: 3
38
- Classifier: Programming Language :: Python :: 3 :: Only
39
- Classifier: Typing :: Typed
40
- Requires-Python: >=3.11
41
- Description-Content-Type: text/x-rst
42
- License-File: LICENSE.txt
43
- Requires-Dist: click<9,>=8.2
44
- Requires-Dist: preparse<2,>=0.1.6
45
- Dynamic: license-file
46
-
47
- =============
48
- dummyfunction
49
- =============
50
-
51
- Visit the website `https://dummyfunction.johannes-programming.online/ <https://dummyfunction.johannes-programming.online/>`_ for more information.
@@ -1,2 +0,0 @@
1
- click<9,>=8.2
2
- preparse<2,>=0.1.6
File without changes