vcs-versioning 0.0.1__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.
@@ -0,0 +1,3 @@
1
+ from __future__ import annotations
2
+
3
+ __version__ = "0.0.1"
@@ -0,0 +1 @@
1
+ from __future__ import annotations
@@ -0,0 +1,40 @@
1
+ Metadata-Version: 2.1
2
+ Name: vcs-versioning
3
+ Version: 0.0.1
4
+ Summary: the blessed package to manage your versions by vcs metadata
5
+ Project-URL: Documentation, https://github.com/unknown/vcs-versioning#readme
6
+ Project-URL: Issues, https://github.com/unknown/vcs-versioning/issues
7
+ Project-URL: Source, https://github.com/unknown/vcs-versioning
8
+ Author-email: Ronny Pfannschmidt <opensource@ronnypfannschmidt.de>
9
+ License-Expression: MIT
10
+ License-File: LICENSE.txt
11
+ Classifier: Development Status :: 1 - Planning
12
+ Classifier: Programming Language :: Python
13
+ Classifier: Programming Language :: Python :: 3.8
14
+ Classifier: Programming Language :: Python :: 3.9
15
+ Classifier: Programming Language :: Python :: 3.10
16
+ Classifier: Programming Language :: Python :: 3.11
17
+ Requires-Python: >=3.8
18
+ Description-Content-Type: text/markdown
19
+
20
+ # vcs-versioning
21
+
22
+ [![PyPI - Version](https://img.shields.io/pypi/v/vcs-versioning.svg)](https://pypi.org/project/vcs-versioning)
23
+ [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/vcs-versioning.svg)](https://pypi.org/project/vcs-versioning)
24
+
25
+ -----
26
+
27
+ **Table of Contents**
28
+
29
+ - [Installation](#installation)
30
+ - [License](#license)
31
+
32
+ ## Installation
33
+
34
+ ```console
35
+ pip install vcs-versioning
36
+ ```
37
+
38
+ ## License
39
+
40
+ `vcs-versioning` is distributed under the terms of the [MIT](https://spdx.org/licenses/MIT.html) license.
@@ -0,0 +1,6 @@
1
+ vcs_versioning/__about__.py,sha256=F-8FrN5JPg-VmrjsfRwdwtSIPe5Dj65HK7XVUix7ef0,58
2
+ vcs_versioning/__init__.py,sha256=U4S_2y3zgLZVfMenHRaJFBW8yqh2mUBuI291LGQVOJ8,35
3
+ vcs_versioning-0.0.1.dist-info/METADATA,sha256=lig9cB1XdLzY3iO5-4LGCG_s_wHv5hC7882nGWzSJmo,1330
4
+ vcs_versioning-0.0.1.dist-info/WHEEL,sha256=Fd6mP6ydyRguakwUJ05oBE7fh2IPxgtDN9IwHJ9OqJQ,87
5
+ vcs_versioning-0.0.1.dist-info/licenses/LICENSE.txt,sha256=9S9ghaL0rNt_Ql-seNS7ATstcjYWeS-xc6n4rqGR2PA,1083
6
+ vcs_versioning-0.0.1.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.13.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,9 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2023-present Ronny Pfannschmidt
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
+
7
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
+
9
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.