girder-client 3.2.9.dev12__tar.gz → 3.2.9.dev16__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
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: girder-client
3
- Version: 3.2.9.dev12
3
+ Version: 3.2.9.dev16
4
4
  Summary: Python client for interacting with Girder servers
5
5
  Home-page: http://girder.readthedocs.org/en/latest/python-client.html
6
6
  Author: Kitware, Inc.
@@ -16,6 +16,15 @@ Requires-Dist: click>=6.7
16
16
  Requires-Dist: diskcache
17
17
  Requires-Dist: requests>=2.4.2
18
18
  Requires-Dist: requests_toolbelt
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: home-page
24
+ Dynamic: license
25
+ Dynamic: requires-dist
26
+ Dynamic: requires-python
27
+ Dynamic: summary
19
28
 
20
29
  Girder Python Client
21
30
  ====================
@@ -1,8 +1,8 @@
1
- from pkg_resources import DistributionNotFound, get_distribution
1
+ import importlib.metadata
2
2
 
3
3
  try:
4
- __version__ = get_distribution(__name__).version
5
- except DistributionNotFound:
4
+ __version__ = importlib.metadata.version(__name__)
5
+ except importlib.metadata.PackageNotFoundError:
6
6
  # package is not installed
7
7
  __version__ = None
8
8
 
@@ -1,6 +1,6 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: girder-client
3
- Version: 3.2.9.dev12
3
+ Version: 3.2.9.dev16
4
4
  Summary: Python client for interacting with Girder servers
5
5
  Home-page: http://girder.readthedocs.org/en/latest/python-client.html
6
6
  Author: Kitware, Inc.
@@ -16,6 +16,15 @@ Requires-Dist: click>=6.7
16
16
  Requires-Dist: diskcache
17
17
  Requires-Dist: requests>=2.4.2
18
18
  Requires-Dist: requests_toolbelt
19
+ Dynamic: author
20
+ Dynamic: author-email
21
+ Dynamic: classifier
22
+ Dynamic: description
23
+ Dynamic: home-page
24
+ Dynamic: license
25
+ Dynamic: requires-dist
26
+ Dynamic: requires-python
27
+ Dynamic: summary
19
28
 
20
29
  Girder Python Client
21
30
  ====================