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.
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: envstack
3
- Version: 0.4.1
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.5
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 `/etc/envstack` (the default location for envstack files, or `C:/ProgramData/envstack` on Windows).
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 /etc/envstack
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 `/etc/envstack` (the default location for envstack files, or `C:/ProgramData/envstack` on Windows).
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 /etc/envstack
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
@@ -34,6 +34,6 @@ Stacked environment variable management system.
34
34
  """
35
35
 
36
36
  __prog__ = "envstack"
37
- __version__ = "0.4.1"
37
+ __version__ = "0.4.2"
38
38
 
39
39
  from envstack.env import getenv, init
@@ -67,6 +67,7 @@ SHELL = detect_shell()
67
67
  USERNAME = os.getenv("USERNAME", os.getenv("USER"))
68
68
 
69
69
  # default location of the global env stacks
70
+ # set in sitecustomize.py using siteconf>=0.1.7
70
71
  DEFAULT_ENV_DIR = os.getenv(
71
72
  "DEFAULT_ENV_DIR",
72
73
  {
@@ -1,13 +1,13 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: envstack
3
- Version: 0.4.1
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.5
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 `/etc/envstack` (the default location for envstack files, or `C:/ProgramData/envstack` on Windows).
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 /etc/envstack
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
@@ -0,0 +1,2 @@
1
+ PyYAML>=5.1.2
2
+ siteconf>=0.1.7
@@ -71,7 +71,7 @@ class PostInstallCommand(install):
71
71
 
72
72
  setup(
73
73
  name="envstack",
74
- version="0.4.1",
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.5",
90
+ "siteconf>=0.1.7",
91
91
  ],
92
92
  data_files=[(".", ["stack.env"])],
93
93
  cmdclass={"install": PostInstallCommand},
@@ -1,2 +0,0 @@
1
- PyYAML>=5.1.2
2
- siteconf>=0.1.5
File without changes
File without changes
File without changes
File without changes
File without changes