pybuilder-docker-too 45__tar.gz → 46__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: pybuilder-docker-too
3
- Version: 45
3
+ Version: 46
4
4
  Summary: A pybuilder plugin that stages a python package into a docker container and optionally publishes it to a registry.
5
5
  Home-page: https://github.com/rspitler/pybuilder-docker
6
6
  Author:
@@ -442,7 +442,7 @@ def _get_docker_compose_file(project):
442
442
 
443
443
 
444
444
  def get_dist_file_name(project):
445
- default_dist_file = f"{project.name}-{project.version}.tar.gz".replace('-', '_')
445
+ default_dist_file = f"{project.name.replace('-', '_')}-{project.version}.tar.gz"
446
446
  return project.get_property("docker_package_dist_file", default_dist_file)
447
447
 
448
448
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pybuilder-docker-too
3
- Version: 45
3
+ Version: 46
4
4
  Summary: A pybuilder plugin that stages a python package into a docker container and optionally publishes it to a registry.
5
5
  Home-page: https://github.com/rspitler/pybuilder-docker
6
6
  Author:
@@ -21,7 +21,7 @@ class install(_install):
21
21
  if __name__ == '__main__':
22
22
  setup(
23
23
  name = 'pybuilder-docker-too',
24
- version = '45',
24
+ version = '46',
25
25
  description = 'A pybuilder plugin that stages a python package into a docker container and optionally publishes it to a registry.',
26
26
  long_description = 'A pybuilder plugin that stages a python package into a docker container and optionally publishes it to a registry.',
27
27
  long_description_content_type = None,