pygooglecloud 0.0.1__tar.gz → 0.0.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,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pygooglecloud
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: pygooglecloud helps you with command line interaction with gcp
5
5
  Home-page: https://veltzer.github.io/pygooglecloud
6
6
  Download-URL: https://github.com/veltzer/pygooglecloud
@@ -40,6 +40,6 @@ project website: https://veltzer.github.io/pygooglecloud
40
40
 
41
41
  author: Mark Veltzer
42
42
 
43
- version: 0.0.1
43
+ version: 0.0.2
44
44
 
45
45
  Mark Veltzer <mark.veltzer@gmail.com>, Copyright © 2024
@@ -12,6 +12,6 @@ project website: https://veltzer.github.io/pygooglecloud
12
12
 
13
13
  author: Mark Veltzer
14
14
 
15
- version: 0.0.1
15
+ version: 0.0.2
16
16
 
17
17
  Mark Veltzer <mark.veltzer@gmail.com>, Copyright © 2024
@@ -1,5 +1,5 @@
1
1
  """ version which can be consumed from within the module """
2
- VERSION_STR = "0.0.1"
2
+ VERSION_STR = "0.0.2"
3
3
  DESCRIPTION = "pygooglecloud helps you with command line interaction with gcp"
4
4
  APP_NAME = "pygooglecloud"
5
5
  LOGGER_NAME = "pygooglecloud"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pygooglecloud
3
- Version: 0.0.1
3
+ Version: 0.0.2
4
4
  Summary: pygooglecloud helps you with command line interaction with gcp
5
5
  Home-page: https://veltzer.github.io/pygooglecloud
6
6
  Download-URL: https://github.com/veltzer/pygooglecloud
@@ -40,6 +40,6 @@ project website: https://veltzer.github.io/pygooglecloud
40
40
 
41
41
  author: Mark Veltzer
42
42
 
43
- version: 0.0.1
43
+ version: 0.0.2
44
44
 
45
45
  Mark Veltzer <mark.veltzer@gmail.com>, Copyright © 2024
@@ -9,7 +9,7 @@ def get_readme():
9
9
  setuptools.setup(
10
10
  # the first three fields are a must according to the documentation
11
11
  name="pygooglecloud",
12
- version="0.0.1",
12
+ version="0.0.2",
13
13
  packages=[
14
14
  "pygooglecloud",
15
15
  ],
File without changes
@@ -3,9 +3,9 @@ The default group of operations that pygooglecloud has
3
3
  """
4
4
  import pylogconf.core
5
5
  from pytconf import register_endpoint, register_main, config_arg_parse_and_launch
6
+ import google.auth
6
7
 
7
8
  from pygooglecloud.static import APP_NAME, DESCRIPTION, VERSION_STR
8
- import google.auth
9
9
 
10
10
 
11
11
  @register_endpoint(
File without changes