wexample-config 0.0.10__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-config-0.0.10/PKG-INFO +16 -0
- wexample-config-0.0.10/README.md +3 -0
- wexample-config-0.0.10/setup.cfg +4 -0
- wexample-config-0.0.10/setup.py +22 -0
- wexample-config-0.0.10/wexample_config/__init__.py +0 -0
- wexample-config-0.0.10/wexample_config.egg-info/.gitignore +0 -0
- wexample-config-0.0.10/wexample_config.egg-info/.wex/.env +0 -0
- wexample-config-0.0.10/wexample_config.egg-info/.wex/config.yml +0 -0
- wexample-config-0.0.10/wexample_config.egg-info/PKG-INFO +16 -0
- wexample-config-0.0.10/wexample_config.egg-info/README.md +0 -0
- wexample-config-0.0.10/wexample_config.egg-info/SOURCES.txt +14 -0
- wexample-config-0.0.10/wexample_config.egg-info/dependency_links.txt +1 -0
- wexample-config-0.0.10/wexample_config.egg-info/requires.txt +1 -0
- wexample-config-0.0.10/wexample_config.egg-info/setup.py +0 -0
- wexample-config-0.0.10/wexample_config.egg-info/top_level.txt +1 -0
- wexample-config-0.0.10/wexample_config.egg-info/version.txt +1 -0
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: wexample-config
|
|
3
|
+
Version: 0.0.10
|
|
4
|
+
Summary: Helpers to manage dict types configurations.
|
|
5
|
+
Home-page: https://github.com/wexample/python-config
|
|
6
|
+
Author: weeger
|
|
7
|
+
Author-email: contact@wexample.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Config
|
|
15
|
+
|
|
16
|
+
Helpers to manage dict types configurations
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
from setuptools import find_packages, setup
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="wexample-config",
|
|
5
|
+
version=open("version.txt").read(),
|
|
6
|
+
author="weeger",
|
|
7
|
+
author_email="contact@wexample.com",
|
|
8
|
+
description="Helpers to manage dict types configurations.",
|
|
9
|
+
long_description=open("README.md").read(),
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
url="https://github.com/wexample/python-config",
|
|
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
|
+
"wexample-helpers",
|
|
20
|
+
],
|
|
21
|
+
python_requires=">=3.6",
|
|
22
|
+
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: wexample-config
|
|
3
|
+
Version: 0.0.10
|
|
4
|
+
Summary: Helpers to manage dict types configurations.
|
|
5
|
+
Home-page: https://github.com/wexample/python-config
|
|
6
|
+
Author: weeger
|
|
7
|
+
Author-email: contact@wexample.com
|
|
8
|
+
Classifier: Programming Language :: Python :: 3
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Python: >=3.6
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# Config
|
|
15
|
+
|
|
16
|
+
Helpers to manage dict types configurations
|
|
File without changes
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
README.md
|
|
2
|
+
setup.py
|
|
3
|
+
wexample_config/__init__.py
|
|
4
|
+
wexample_config.egg-info/.gitignore
|
|
5
|
+
wexample_config.egg-info/PKG-INFO
|
|
6
|
+
wexample_config.egg-info/README.md
|
|
7
|
+
wexample_config.egg-info/SOURCES.txt
|
|
8
|
+
wexample_config.egg-info/dependency_links.txt
|
|
9
|
+
wexample_config.egg-info/requires.txt
|
|
10
|
+
wexample_config.egg-info/setup.py
|
|
11
|
+
wexample_config.egg-info/top_level.txt
|
|
12
|
+
wexample_config.egg-info/version.txt
|
|
13
|
+
wexample_config.egg-info/.wex/.env
|
|
14
|
+
wexample_config.egg-info/.wex/config.yml
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
wexample-helpers
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
wexample_config
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
0.0.1
|