anoy 0.1.1__py3-none-any.whl → 0.1.2__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: anoy
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: This is a library that provides simple type checking for YAML.
5
5
  Author-email: masaniki <masaniki.software@gmail.com>
6
6
  License-Expression: MIT
@@ -0,0 +1,9 @@
1
+ anoyError.py,sha256=4smZo02X8YOv407FRyc12ADXW8foNrFr0pv0pRoQUxo,620
2
+ cli.py,sha256=_eAJeiI8b6JvWhASDbCOuAspmo2qCaDvvVnnZ8SSCxU,1005
3
+ dictTraversal.py,sha256=TaAhUUMUUUvRgZzEpiDUbkQp6WvF42QsTu_2NLGWNos,7793
4
+ anoy-0.1.2.dist-info/licenses/LICENSE.txt,sha256=nsHvySI1U7YZgAX4K3rJsWli_GfXy2syPI-MtGPwjlo,1062
5
+ anoy-0.1.2.dist-info/METADATA,sha256=2r-2BU8yC0MxDT7LXDGre5-fGpmYBP3kM6XU1eY4M_g,1130
6
+ anoy-0.1.2.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
7
+ anoy-0.1.2.dist-info/entry_points.txt,sha256=_lpL6R97giGseZcV0r5QwdX4zRwoZLzRHUxyBZl_iYI,34
8
+ anoy-0.1.2.dist-info/top_level.txt,sha256=Ml0_35nDdV_uFyw0sUsvSho29qLH9ppoSOUQKuInsA4,28
9
+ anoy-0.1.2.dist-info/RECORD,,
cli.py CHANGED
@@ -5,7 +5,7 @@ import yaml
5
5
 
6
6
  from dictTraversal import DictTraversal
7
7
 
8
- VERSION="v0.1.1"
8
+ VERSION="v0.1.2"
9
9
 
10
10
  def main():
11
11
  """
dictTraversal.py CHANGED
@@ -1,6 +1,6 @@
1
1
  import yaml
2
2
 
3
- from .anoyError import AnnotationYamlError,ConfigurationYamlError,AnnotationYamlTypeError
3
+ from anoyError import AnnotationYamlError,ConfigurationYamlError,AnnotationYamlTypeError
4
4
 
5
5
  class DictTraversal():
6
6
  """
@@ -1,9 +0,0 @@
1
- anoyError.py,sha256=4smZo02X8YOv407FRyc12ADXW8foNrFr0pv0pRoQUxo,620
2
- cli.py,sha256=1NdYRb7UFGEctKSRCyh5UOlxM3UGLwVequtkybgYZoA,1005
3
- dictTraversal.py,sha256=KI4YH_XwUmydF-29-kasUbkOLqc6fthBdEavYsc9H8I,7794
4
- anoy-0.1.1.dist-info/licenses/LICENSE.txt,sha256=nsHvySI1U7YZgAX4K3rJsWli_GfXy2syPI-MtGPwjlo,1062
5
- anoy-0.1.1.dist-info/METADATA,sha256=jk0XCGbGl8vmc35RN937a_On9DzAgPNeoN3vELjV3PA,1130
6
- anoy-0.1.1.dist-info/WHEEL,sha256=wUyA8OaulRlbfwMtmQsvNngGrxQHAvkKcvRmdizlJi0,92
7
- anoy-0.1.1.dist-info/entry_points.txt,sha256=_lpL6R97giGseZcV0r5QwdX4zRwoZLzRHUxyBZl_iYI,34
8
- anoy-0.1.1.dist-info/top_level.txt,sha256=Ml0_35nDdV_uFyw0sUsvSho29qLH9ppoSOUQKuInsA4,28
9
- anoy-0.1.1.dist-info/RECORD,,
File without changes