pylibtemplate 0.0.1__tar.gz → 0.0.3__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.
Files changed (41) hide show
  1. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/PKG-INFO +1 -1
  2. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/pylibtemplate/__init__.py +3 -3
  3. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/pylibtemplate/version.py +3 -3
  4. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/pylibtemplate.egg-info/PKG-INFO +1 -1
  5. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/.coveragerc +0 -0
  6. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/.github/workflows/measure_code_coverage.yml +0 -0
  7. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/.github/workflows/publish_documentation_website.yml +0 -0
  8. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/.github/workflows/publish_release_to_pypi.yml +0 -0
  9. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/.github/workflows/test_library.yml +0 -0
  10. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/.gitignore +0 -0
  11. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/LICENSE +0 -0
  12. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/README.md +0 -0
  13. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/INSTALL.rst +0 -0
  14. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/Makefile +0 -0
  15. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/_static/readthedocs_custom.css +0 -0
  16. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/_templates/custom_class_template.rst +0 -0
  17. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/_templates/custom_module_template.rst +0 -0
  18. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/_templates/versions.html +0 -0
  19. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/api.rst +0 -0
  20. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/build_docs.py +0 -0
  21. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/conf.py +0 -0
  22. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/examples/generating_a_git_repository_template.rst +0 -0
  23. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/examples.rst +0 -0
  24. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/how_to_create_a_python_library_using_pylibtemplate.rst +0 -0
  25. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/index.rst +0 -0
  26. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/license.rst +0 -0
  27. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/literature.rst +0 -0
  28. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/make.bat +0 -0
  29. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/docs/private_members_to_publish_to_docs.rst +0 -0
  30. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/examples/generating_a_git_repository_template.py +0 -0
  31. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/pylibtemplate.egg-info/SOURCES.txt +0 -0
  32. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/pylibtemplate.egg-info/dependency_links.txt +0 -0
  33. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/pylibtemplate.egg-info/entry_points.txt +0 -0
  34. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/pylibtemplate.egg-info/requires.txt +0 -0
  35. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/pylibtemplate.egg-info/top_level.txt +0 -0
  36. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/pyproject.toml +0 -0
  37. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/run_tests.sh +0 -0
  38. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/setup.cfg +0 -0
  39. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/setup.py +0 -0
  40. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/tests/test_root.py +0 -0
  41. {pylibtemplate-0.0.1 → pylibtemplate-0.0.3}/tox.ini +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pylibtemplate
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: A Python library that generates `git` repository templates for building Python libraries that are suitable for publication on PyPI.
5
5
  Author-email: Matthew Fitzpatrick <matthew.rc.fitzpatrick@gmail.com>
6
6
  Project-URL: Homepage, https://mrfitzpa.github.io/pylibtemplate
@@ -388,7 +388,7 @@ def _clone_pylibtemplate_repo(path_to_directory_to_contain_new_repo,
388
388
 
389
389
  cloning_options = (tuple()
390
390
  if (tag is None)
391
- else ("--depth=1", "--branch={}".format(tag)))
391
+ else ("--depth 1", "--branch {}".format(tag)))
392
392
 
393
393
  kwargs = {"url": github_url,
394
394
  "to_path": path_to_new_repo,
@@ -428,7 +428,7 @@ def _generate_path_to_new_repo(path_to_directory_to_contain_new_repo,
428
428
  def _get_pylibtemplate_tag():
429
429
  pattern = r"[0-9]\.[0-9]\.[0-9]"
430
430
  pylibtemplate_version = __version__
431
- pylibtemplate_tag = ("v{}".format(pylibtemplate.version.__version__)
431
+ pylibtemplate_tag = ("v{}".format(pylibtemplate_version)
432
432
  if re.fullmatch(pattern, pylibtemplate_version)
433
433
  else None)
434
434
 
@@ -445,7 +445,7 @@ def _rm_file_subset_of_local_git_repo(path_to_directory_to_contain_new_repo,
445
445
  path_to_new_repo = _generate_path_to_new_repo(**kwargs)
446
446
 
447
447
  path_to_dir_to_rm = path_to_new_repo + "/.git"
448
- shutil.rmtree(path_to_dir_to_rm)
448
+ shutil.rmtree(path_to_dir_to_rm, ignore_errors=True)
449
449
 
450
450
  basename = "how_to_create_a_python_library_using_pylibtemplate.rst"
451
451
  path_to_file_to_rm = path_to_new_repo + "/docs/" + basename
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
28
28
  commit_id: COMMIT_ID
29
29
  __commit_id__: COMMIT_ID
30
30
 
31
- __version__ = version = '0.0.1'
32
- __version_tuple__ = version_tuple = (0, 0, 1)
31
+ __version__ = version = '0.0.3'
32
+ __version_tuple__ = version_tuple = (0, 0, 3)
33
33
 
34
- __commit_id__ = commit_id = 'g5f39cfc46'
34
+ __commit_id__ = commit_id = 'g731b32a79'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pylibtemplate
3
- Version: 0.0.1
3
+ Version: 0.0.3
4
4
  Summary: A Python library that generates `git` repository templates for building Python libraries that are suitable for publication on PyPI.
5
5
  Author-email: Matthew Fitzpatrick <matthew.rc.fitzpatrick@gmail.com>
6
6
  Project-URL: Homepage, https://mrfitzpa.github.io/pylibtemplate
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes