reposnap 0.3.0__tar.gz → 0.3.1__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 (28) hide show
  1. {reposnap-0.3.0 → reposnap-0.3.1}/PKG-INFO +2 -2
  2. {reposnap-0.3.0 → reposnap-0.3.1}/README.md +1 -1
  3. {reposnap-0.3.0 → reposnap-0.3.1}/pyproject.toml +1 -1
  4. {reposnap-0.3.0 → reposnap-0.3.1}/.gitignore +0 -0
  5. {reposnap-0.3.0 → reposnap-0.3.1}/.python-version +0 -0
  6. {reposnap-0.3.0 → reposnap-0.3.1}/LICENSE +0 -0
  7. {reposnap-0.3.0 → reposnap-0.3.1}/requirements-dev.lock +0 -0
  8. {reposnap-0.3.0 → reposnap-0.3.1}/requirements.lock +0 -0
  9. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/__init__.py +0 -0
  10. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/core/__init__.py +0 -0
  11. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/core/collector.py +0 -0
  12. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/core/file_system.py +0 -0
  13. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/core/git_repo.py +0 -0
  14. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/core/markdown_generator.py +0 -0
  15. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/interfaces/__init__.py +0 -0
  16. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/interfaces/cli.py +0 -0
  17. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/utils/__init__.py +0 -0
  18. {reposnap-0.3.0 → reposnap-0.3.1}/src/reposnap/utils/path_utils.py +0 -0
  19. {reposnap-0.3.0 → reposnap-0.3.1}/tests/__init__.py +0 -0
  20. {reposnap-0.3.0 → reposnap-0.3.1}/tests/reposnap/__init__.py +0 -0
  21. {reposnap-0.3.0 → reposnap-0.3.1}/tests/reposnap/test_cli.py +0 -0
  22. {reposnap-0.3.0 → reposnap-0.3.1}/tests/reposnap/test_collector.py +0 -0
  23. {reposnap-0.3.0 → reposnap-0.3.1}/tests/reposnap/test_file_system.py +0 -0
  24. {reposnap-0.3.0 → reposnap-0.3.1}/tests/reposnap/test_git_repo.py +0 -0
  25. {reposnap-0.3.0 → reposnap-0.3.1}/tests/reposnap/test_markdown_generator.py +0 -0
  26. {reposnap-0.3.0 → reposnap-0.3.1}/tests/reposnap/test_path_utils.py +0 -0
  27. {reposnap-0.3.0 → reposnap-0.3.1}/tests/resources/another_existing_file.py +0 -0
  28. {reposnap-0.3.0 → reposnap-0.3.1}/tests/resources/existing_file.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: reposnap
3
- Version: 0.3.0
3
+ Version: 0.3.1
4
4
  Summary: Generate a Markdown file with all contents of your project
5
5
  Author: agoloborodko
6
6
  License-File: LICENSE
@@ -44,7 +44,7 @@ To use `reposnap`, run it with the following options:
44
44
  reposnap [-h] [-o OUTPUT] [--structure-only] [--debug] path
45
45
  ```
46
46
 
47
- - `path`: Path to the Git repository root folder
47
+ - `path`: Path to the Git repository or subdirectory
48
48
  - `-h, --help`: show help message and exit
49
49
  - `-o, --output`: The name of the output Markdown file. Defaults to `output.md`.
50
50
  - `--structure-only`: Generate a Markdown file that includes only the project structure, without file contents.
@@ -32,7 +32,7 @@ To use `reposnap`, run it with the following options:
32
32
  reposnap [-h] [-o OUTPUT] [--structure-only] [--debug] path
33
33
  ```
34
34
 
35
- - `path`: Path to the Git repository root folder
35
+ - `path`: Path to the Git repository or subdirectory
36
36
  - `-h, --help`: show help message and exit
37
37
  - `-o, --output`: The name of the output Markdown file. Defaults to `output.md`.
38
38
  - `--structure-only`: Generate a Markdown file that includes only the project structure, without file contents.
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "reposnap"
3
- version = "0.3.0"
3
+ version = "0.3.1"
4
4
  description = "Generate a Markdown file with all contents of your project"
5
5
  authors = [
6
6
  { name = "agoloborodko" }
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes