custom-python-logger 2.0.10__tar.gz → 2.0.11__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.
- {custom_python_logger-2.0.10/custom_python_logger.egg-info → custom_python_logger-2.0.11}/PKG-INFO +1 -1
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/custom_python_logger/logger.py +2 -3
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11/custom_python_logger.egg-info}/PKG-INFO +1 -1
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/pyproject.toml +1 -1
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/LICENSE +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/MANIFEST.in +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/README.md +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/custom_python_logger/__init__.py +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/custom_python_logger/consts.py +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/custom_python_logger.egg-info/SOURCES.txt +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/custom_python_logger.egg-info/dependency_links.txt +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/custom_python_logger.egg-info/requires.txt +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/custom_python_logger.egg-info/top_level.txt +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/requirements.txt +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/setup.cfg +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/tests/test_logger.py +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/tests/test_logger_pytest.py +0 -0
- {custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/tests/test_usage_example_pytest.py +0 -0
|
@@ -23,9 +23,8 @@ def yaml_pretty_format(data: Any, indent: int = 4, sort_keys: bool = False, allo
|
|
|
23
23
|
return yaml.dump(data, sort_keys=sort_keys, indent=indent, allow_unicode=allow_unicode)
|
|
24
24
|
|
|
25
25
|
|
|
26
|
-
def get_project_path_by_file(markers:
|
|
27
|
-
|
|
28
|
-
markers = ["pyproject.toml", "setup.py", ".git", "requirements.txt", ".gitignore", ".github", ".gitlab"]
|
|
26
|
+
def get_project_path_by_file(markers: set[str] | None = None) -> Path:
|
|
27
|
+
markers = markers or {".git", "setup.py", "pyproject.toml", "LICENSE", "README.md"}
|
|
29
28
|
path = Path(__file__).resolve() if "__file__" in globals() else Path.cwd().resolve()
|
|
30
29
|
|
|
31
30
|
for marker in markers:
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/custom_python_logger/__init__.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{custom_python_logger-2.0.10 → custom_python_logger-2.0.11}/tests/test_usage_example_pytest.py
RENAMED
|
File without changes
|