wexample-helpers-yaml 0.0.1__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.
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-helpers-yaml
3
+ Version: 0.0.1
4
+ Summary: Helpers for reading yaml files.
5
+ Home-page: https://github.com/wexample/python-helpers-yaml
6
+ Author: weeger
7
+ Author-email: contact@wexample.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.6
14
+ Description-Content-Type: text/markdown
15
+
16
+ # helpers-yml
17
+
18
+ Helpers for reading yaml files, based on pyyaml.
19
+
@@ -0,0 +1,3 @@
1
+ # helpers-yml
2
+
3
+ Helpers for reading yaml files, based on pyyaml.
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,23 @@
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name='wexample-helpers-yaml',
5
+ version=open('version.txt').read(),
6
+ author='weeger',
7
+ author_email='contact@wexample.com',
8
+ description='Helpers for reading yaml files.',
9
+ long_description=open('README.md').read(),
10
+ long_description_content_type='text/markdown',
11
+ url='https://github.com/wexample/python-helpers-yaml',
12
+ packages=find_packages(),
13
+ classifiers=[
14
+ 'Programming Language :: Python :: 3',
15
+ 'License :: OSI Approved :: MIT License',
16
+ 'Operating System :: OS Independent',
17
+ ],
18
+ install_requires=[
19
+ 'pyyaml',
20
+ 'wexample-helpers'
21
+ ],
22
+ python_requires='>=3.6',
23
+ )
@@ -0,0 +1,19 @@
1
+ Metadata-Version: 2.1
2
+ Name: wexample-helpers-yaml
3
+ Version: 0.0.1
4
+ Summary: Helpers for reading yaml files.
5
+ Home-page: https://github.com/wexample/python-helpers-yaml
6
+ Author: weeger
7
+ Author-email: contact@wexample.com
8
+ License: UNKNOWN
9
+ Platform: UNKNOWN
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: License :: OSI Approved :: MIT License
12
+ Classifier: Operating System :: OS Independent
13
+ Requires-Python: >=3.6
14
+ Description-Content-Type: text/markdown
15
+
16
+ # helpers-yml
17
+
18
+ Helpers for reading yaml files, based on pyyaml.
19
+
@@ -0,0 +1,7 @@
1
+ README.md
2
+ setup.py
3
+ wexample_helpers_yaml.egg-info/PKG-INFO
4
+ wexample_helpers_yaml.egg-info/SOURCES.txt
5
+ wexample_helpers_yaml.egg-info/dependency_links.txt
6
+ wexample_helpers_yaml.egg-info/requires.txt
7
+ wexample_helpers_yaml.egg-info/top_level.txt
@@ -0,0 +1,2 @@
1
+ pyyaml
2
+ wexample-helpers