envstack 0.4.1__tar.gz → 0.4.2__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.
- {envstack-0.4.1 → envstack-0.4.2}/PKG-INFO +4 -4
- {envstack-0.4.1 → envstack-0.4.2}/README.md +2 -2
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack/__init__.py +1 -1
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack/config.py +1 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack.egg-info/PKG-INFO +4 -4
- envstack-0.4.2/lib/envstack.egg-info/requires.txt +2 -0
- {envstack-0.4.1 → envstack-0.4.2}/setup.py +2 -2
- envstack-0.4.1/lib/envstack.egg-info/requires.txt +0 -2
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack/cli.py +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack/env.py +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack/exceptions.py +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack/logger.py +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack/path.py +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack/wrapper.py +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack.egg-info/SOURCES.txt +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack.egg-info/dependency_links.txt +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack.egg-info/entry_points.txt +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack.egg-info/not-zip-safe +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/lib/envstack.egg-info/top_level.txt +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/setup.cfg +0 -0
- {envstack-0.4.1 → envstack-0.4.2}/stack.env +0 -0
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: envstack
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: Stacked environment variable management system.
|
|
5
5
|
Home-page: http://github.com/rsgalloway/envstack
|
|
6
6
|
Author: Ryan Galloway
|
|
7
7
|
Author-email: ryan@rsgalloway.com
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Requires-Dist: PyYAML>=5.1.2
|
|
10
|
-
Requires-Dist: siteconf>=0.1.
|
|
10
|
+
Requires-Dist: siteconf>=0.1.7
|
|
11
11
|
|
|
12
12
|
envstack
|
|
13
13
|
========
|
|
@@ -34,11 +34,11 @@ $ pip install envstack
|
|
|
34
34
|
|
|
35
35
|
Copy the default stack file
|
|
36
36
|
[`stack.env`](https://github.com/rsgalloway/envstack/blob/master/stack.env)
|
|
37
|
-
to your current working directory, the root of your project or
|
|
37
|
+
to your current working directory, the root of your project or $DEFAULT_ENV_DIR if defined (defaults: /etc/envstack on posix platforms and C:/ProgramData/envstack on Windows).
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
```bach
|
|
41
|
-
cp stack.env
|
|
41
|
+
$ cp stack.env $DEFAULT_ENV_DIR
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
The `stack` namespace is the default environment stack. Running the `envstack` command
|
|
@@ -23,11 +23,11 @@ $ pip install envstack
|
|
|
23
23
|
|
|
24
24
|
Copy the default stack file
|
|
25
25
|
[`stack.env`](https://github.com/rsgalloway/envstack/blob/master/stack.env)
|
|
26
|
-
to your current working directory, the root of your project or
|
|
26
|
+
to your current working directory, the root of your project or $DEFAULT_ENV_DIR if defined (defaults: /etc/envstack on posix platforms and C:/ProgramData/envstack on Windows).
|
|
27
27
|
|
|
28
28
|
|
|
29
29
|
```bach
|
|
30
|
-
cp stack.env
|
|
30
|
+
$ cp stack.env $DEFAULT_ENV_DIR
|
|
31
31
|
```
|
|
32
32
|
|
|
33
33
|
The `stack` namespace is the default environment stack. Running the `envstack` command
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: envstack
|
|
3
|
-
Version: 0.4.
|
|
3
|
+
Version: 0.4.2
|
|
4
4
|
Summary: Stacked environment variable management system.
|
|
5
5
|
Home-page: http://github.com/rsgalloway/envstack
|
|
6
6
|
Author: Ryan Galloway
|
|
7
7
|
Author-email: ryan@rsgalloway.com
|
|
8
8
|
Description-Content-Type: text/markdown
|
|
9
9
|
Requires-Dist: PyYAML>=5.1.2
|
|
10
|
-
Requires-Dist: siteconf>=0.1.
|
|
10
|
+
Requires-Dist: siteconf>=0.1.7
|
|
11
11
|
|
|
12
12
|
envstack
|
|
13
13
|
========
|
|
@@ -34,11 +34,11 @@ $ pip install envstack
|
|
|
34
34
|
|
|
35
35
|
Copy the default stack file
|
|
36
36
|
[`stack.env`](https://github.com/rsgalloway/envstack/blob/master/stack.env)
|
|
37
|
-
to your current working directory, the root of your project or
|
|
37
|
+
to your current working directory, the root of your project or $DEFAULT_ENV_DIR if defined (defaults: /etc/envstack on posix platforms and C:/ProgramData/envstack on Windows).
|
|
38
38
|
|
|
39
39
|
|
|
40
40
|
```bach
|
|
41
|
-
cp stack.env
|
|
41
|
+
$ cp stack.env $DEFAULT_ENV_DIR
|
|
42
42
|
```
|
|
43
43
|
|
|
44
44
|
The `stack` namespace is the default environment stack. Running the `envstack` command
|
|
@@ -71,7 +71,7 @@ class PostInstallCommand(install):
|
|
|
71
71
|
|
|
72
72
|
setup(
|
|
73
73
|
name="envstack",
|
|
74
|
-
version="0.4.
|
|
74
|
+
version="0.4.2",
|
|
75
75
|
description="Stacked environment variable management system.",
|
|
76
76
|
long_description=long_description,
|
|
77
77
|
long_description_content_type="text/markdown",
|
|
@@ -87,7 +87,7 @@ setup(
|
|
|
87
87
|
},
|
|
88
88
|
install_requires=[
|
|
89
89
|
"PyYAML>=5.1.2",
|
|
90
|
-
"siteconf>=0.1.
|
|
90
|
+
"siteconf>=0.1.7",
|
|
91
91
|
],
|
|
92
92
|
data_files=[(".", ["stack.env"])],
|
|
93
93
|
cmdclass={"install": PostInstallCommand},
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|