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.
- wexample-helpers-yaml-0.0.1/PKG-INFO +19 -0
- wexample-helpers-yaml-0.0.1/README.md +3 -0
- wexample-helpers-yaml-0.0.1/setup.cfg +4 -0
- wexample-helpers-yaml-0.0.1/setup.py +23 -0
- wexample-helpers-yaml-0.0.1/wexample_helpers_yaml.egg-info/PKG-INFO +19 -0
- wexample-helpers-yaml-0.0.1/wexample_helpers_yaml.egg-info/SOURCES.txt +7 -0
- wexample-helpers-yaml-0.0.1/wexample_helpers_yaml.egg-info/dependency_links.txt +1 -0
- wexample-helpers-yaml-0.0.1/wexample_helpers_yaml.egg-info/requires.txt +2 -0
- wexample-helpers-yaml-0.0.1/wexample_helpers_yaml.egg-info/top_level.txt +1 -0
|
@@ -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,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 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|