validating 0.0.0__py3-none-any.whl

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.
validating/__init__.py ADDED
@@ -0,0 +1,22 @@
1
+ """
2
+ # validating
3
+ A template repository for building python packages.
4
+
5
+ ## See Also
6
+ ### Github repository
7
+ * https://github.com/Chitaoji/validating/
8
+
9
+ ### PyPI project
10
+ * https://pypi.org/project/validating/
11
+
12
+ ## License
13
+ This project falls under the BSD 3-Clause License.
14
+
15
+ """
16
+
17
+ from . import core
18
+ from ._version import __version__
19
+ from .core import *
20
+
21
+ __all__: list[str] = []
22
+ __all__.extend(core.__all__)
validating/__main__.py ADDED
@@ -0,0 +1,14 @@
1
+ """
2
+ Contains the cli api of template.
3
+
4
+ NOTE: this module is private. All functions and objects are available in the main
5
+ `template` namespace - use that instead.
6
+
7
+ """
8
+
9
+ import click
10
+
11
+
12
+ @click.command(context_settings={"help_option_names": ["-h", "--help"]})
13
+ def run() -> None:
14
+ """Read and display a config file."""
validating/_typing.py ADDED
@@ -0,0 +1,10 @@
1
+ """
2
+ Contains typing classes.
3
+
4
+ NOTE: this module is not intended to be imported at runtime.
5
+
6
+ """
7
+
8
+ import loggings
9
+
10
+ loggings.warning("this module is not intended to be imported at runtime")
validating/_version.py ADDED
@@ -0,0 +1,3 @@
1
+ """Version file."""
2
+
3
+ __version__ = "0.0.0"
validating/core.py ADDED
@@ -0,0 +1,9 @@
1
+ """
2
+ Contains the core of template: ... , etc.
3
+
4
+ NOTE: this module is private. All functions and objects are available in the main
5
+ `template` namespace - use that instead.
6
+
7
+ """
8
+
9
+ __all__ = []
@@ -0,0 +1,42 @@
1
+ Metadata-Version: 2.4
2
+ Name: validating
3
+ Version: 0.0.0
4
+ Summary: For test
5
+ Project-URL: Documentation, https://github.com/Chitaoji/validating/blob/main/README.md
6
+ Project-URL: Repository, https://github.com/Chitaoji/validating/
7
+ Author-email: Chitaoji <2360742040@qq.com>
8
+ Maintainer-email: Chitaoji <2360742040@qq.com>
9
+ License-Expression: BSD-3-Clause
10
+ License-File: LICENSE
11
+ Keywords: config
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.12
14
+ Requires-Python: >=3.12
15
+ Description-Content-Type: text/markdown
16
+
17
+ # validating
18
+ A template repository for building python packages.
19
+
20
+ ## Installation
21
+ ```sh
22
+ $ pip install validating
23
+ ```
24
+
25
+ ## Requirements
26
+ ```txt
27
+
28
+ ```
29
+
30
+ ## See Also
31
+ ### Github repository
32
+ * https://github.com/Chitaoji/validating/
33
+
34
+ ### PyPI project
35
+ * https://pypi.org/project/validating/
36
+
37
+ ## License
38
+ This project falls under the BSD 3-Clause License.
39
+
40
+ ## History
41
+ ### v0.0.0
42
+ * Initial release.
@@ -0,0 +1,10 @@
1
+ validating/__init__.py,sha256=xh9Nf1BA1L0zc-fnjwIOvGD4zhf1vw7OW8QH9NoCotE,399
2
+ validating/__main__.py,sha256=2_rtB1bk7OtwSfx3ljiEYkH60MFsnBaYm0ct-_mWg2Q,317
3
+ validating/_typing.py,sha256=hYjHTC9lc_cxiFj6weQnY2_00hNAFKISbWHEfhHhPhE,188
4
+ validating/_version.py,sha256=Yh1NHsKxLt_X-EdEq7AJFF-QqDaJmXkvE2TY7RmcOa4,43
5
+ validating/core.py,sha256=CJk_CNVl5zIOkxb2XAcbeUShlCPDFMGJJ9BPpVuRnDU,189
6
+ validating-0.0.0.dist-info/METADATA,sha256=EOVOpdyNWpH2kblSKxQ5md4Hfe6GhFZnCCeEsb9DhmI,934
7
+ validating-0.0.0.dist-info/WHEEL,sha256=QccIxa26bgl1E6uMy58deGWi-0aeIkkangHcxk2kWfw,87
8
+ validating-0.0.0.dist-info/entry_points.txt,sha256=H3jAPfn5CsTpPrjnLn3PNF1jCdenZ8JihvragYgWH1o,46
9
+ validating-0.0.0.dist-info/licenses/LICENSE,sha256=rlOb8JrIQs-p03IkqjgLlXbFGIwdABeHAaRckd4b8N8,1495
10
+ validating-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.29.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ cfg = template.__main__:run
@@ -0,0 +1,28 @@
1
+ BSD 3-Clause License
2
+
3
+ Copyright (c) 2023, Chitaoji
4
+
5
+ Redistribution and use in source and binary forms, with or without
6
+ modification, are permitted provided that the following conditions are met:
7
+
8
+ 1. Redistributions of source code must retain the above copyright notice, this
9
+ list of conditions and the following disclaimer.
10
+
11
+ 2. Redistributions in binary form must reproduce the above copyright notice,
12
+ this list of conditions and the following disclaimer in the documentation
13
+ and/or other materials provided with the distribution.
14
+
15
+ 3. Neither the name of the copyright holder nor the names of its
16
+ contributors may be used to endorse or promote products derived from
17
+ this software without specific prior written permission.
18
+
19
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
20
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
22
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
23
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
25
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
26
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
27
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
28
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.