envstack 0.2.4__tar.gz → 0.2.5__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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: envstack
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: Stacked environment variable management system.
5
5
  Home-page: http://github.com/rsgalloway/envstack
6
6
  Author: Ryan Galloway
@@ -34,4 +34,4 @@ Stacked environment variable management system.
34
34
  """
35
35
 
36
36
  __prog__ = "envstack"
37
- __version__ = "0.2.4"
37
+ __version__ = "0.2.5"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: envstack
3
- Version: 0.2.4
3
+ Version: 0.2.5
4
4
  Summary: Stacked environment variable management system.
5
5
  Home-page: http://github.com/rsgalloway/envstack
6
6
  Author: Ryan Galloway
@@ -49,9 +49,8 @@ class PostInstallCommand(install):
49
49
 
50
50
  def run(self):
51
51
  install.run(self)
52
- print("Installing stack.env file to %s" % os.getcwd())
53
52
  source = os.path.join(os.path.dirname(__file__), "stack.env")
54
- destination = os.path.join(self.original_cwd, "stack.env")
53
+ destination = os.path.join(os.path.expanduser("~"), "stack.env")
55
54
  if os.path.exists(source):
56
55
  shutil.copy(source, destination)
57
56
  print(f"Copied {source} to {destination}")
@@ -61,7 +60,7 @@ class PostInstallCommand(install):
61
60
 
62
61
  setup(
63
62
  name="envstack",
64
- version="0.2.4",
63
+ version="0.2.5",
65
64
  description="Stacked environment variable management system.",
66
65
  long_description=long_description,
67
66
  long_description_content_type="text/markdown",
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes