dummyfunction 1.0.1__tar.gz → 1.0.3__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.
@@ -1,8 +1,8 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: dummyfunction
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: This project provides the dummy function.
5
- Author-email: Johannes <johannes-programming@mailfence.com>
5
+ Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
7
7
 
8
8
  Copyright (c) 2025 Johannes
@@ -37,9 +37,12 @@ Classifier: Programming Language :: Python
37
37
  Classifier: Programming Language :: Python :: 3
38
38
  Classifier: Programming Language :: Python :: 3 :: Only
39
39
  Classifier: Typing :: Typed
40
- Requires-Python: >=3.8
40
+ Requires-Python: >=3.9
41
41
  Description-Content-Type: text/x-rst
42
42
  License-File: LICENSE.txt
43
+ Requires-Dist: click>=8.1.8
44
+ Requires-Dist: preparse>=0.0.12
45
+ Dynamic: license-file
43
46
 
44
47
  =============
45
48
  dummyfunction
@@ -6,7 +6,7 @@ requires = [
6
6
 
7
7
  [project]
8
8
  authors = [
9
- { email = "johannes-programming@mailfence.com", name = "Johannes" },
9
+ { email = "johannes.programming@gmail.com", name = "Johannes" },
10
10
  ]
11
11
  classifiers = [
12
12
  "Development Status :: 5 - Production/Stable",
@@ -19,13 +19,16 @@ classifiers = [
19
19
  "Programming Language :: Python :: 3 :: Only",
20
20
  "Typing :: Typed",
21
21
  ]
22
- dependencies = []
22
+ dependencies = [
23
+ "click>=8.1.8",
24
+ "preparse>=0.0.12",
25
+ ]
23
26
  description = "This project provides the dummy function."
24
27
  keywords = []
25
28
  name = "dummyfunction"
26
29
  readme = "README.rst"
27
- requires-python = ">=3.8"
28
- version = "1.0.1"
30
+ requires-python = ">=3.9"
31
+ version = "1.0.3"
29
32
 
30
33
  [project.license]
31
34
  file = "LICENSE.txt"
@@ -1,2 +1,5 @@
1
1
  from dummyfunction.core import *
2
2
  from dummyfunction.tests import *
3
+
4
+ if __name__ == "__main__":
5
+ main()
@@ -0,0 +1,4 @@
1
+ from dummyfunction import main
2
+
3
+ if __name__ == "__main__":
4
+ main()
@@ -0,0 +1,21 @@
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,8 +1,8 @@
1
- Metadata-Version: 2.2
1
+ Metadata-Version: 2.4
2
2
  Name: dummyfunction
3
- Version: 1.0.1
3
+ Version: 1.0.3
4
4
  Summary: This project provides the dummy function.
5
- Author-email: Johannes <johannes-programming@mailfence.com>
5
+ Author-email: Johannes <johannes.programming@gmail.com>
6
6
  License: The MIT License (MIT)
7
7
 
8
8
  Copyright (c) 2025 Johannes
@@ -37,9 +37,12 @@ Classifier: Programming Language :: Python
37
37
  Classifier: Programming Language :: Python :: 3
38
38
  Classifier: Programming Language :: Python :: 3 :: Only
39
39
  Classifier: Typing :: Typed
40
- Requires-Python: >=3.8
40
+ Requires-Python: >=3.9
41
41
  Description-Content-Type: text/x-rst
42
42
  License-File: LICENSE.txt
43
+ Requires-Dist: click>=8.1.8
44
+ Requires-Dist: preparse>=0.0.12
45
+ Dynamic: license-file
43
46
 
44
47
  =============
45
48
  dummyfunction
@@ -4,9 +4,11 @@ README.rst
4
4
  pyproject.toml
5
5
  setup.cfg
6
6
  src/dummyfunction/__init__.py
7
+ src/dummyfunction/__main__.py
7
8
  src/dummyfunction.egg-info/PKG-INFO
8
9
  src/dummyfunction.egg-info/SOURCES.txt
9
10
  src/dummyfunction.egg-info/dependency_links.txt
11
+ src/dummyfunction.egg-info/requires.txt
10
12
  src/dummyfunction.egg-info/top_level.txt
11
13
  src/dummyfunction/core/__init__.py
12
14
  src/dummyfunction/tests/__init__.py
@@ -0,0 +1,2 @@
1
+ click>=8.1.8
2
+ preparse>=0.0.12
@@ -1,8 +0,0 @@
1
- from typing import *
2
-
3
- __all__ = ["dummyfunction"]
4
-
5
-
6
- def dummyfunction(*args: Any, **kwargs: Any) -> None:
7
- "This function does nothing."
8
- pass
File without changes
File without changes
File without changes
File without changes