reposnap 0.2.2__tar.gz → 0.2.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.
- {reposnap-0.2.2 → reposnap-0.2.3}/PKG-INFO +3 -3
- {reposnap-0.2.2 → reposnap-0.2.3}/README.md +2 -2
- {reposnap-0.2.2 → reposnap-0.2.3}/pyproject.toml +2 -2
- reposnap-0.2.2/tests/reposnap/__init__.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/.gitignore +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/.python-version +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/LICENSE +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/requirements-dev.lock +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/requirements.lock +0 -0
- /reposnap-0.2.2/src/collect.py → /reposnap-0.2.3/src/reposnap/__init__.py +0 -0
- {reposnap-0.2.2/src/reposnap → reposnap-0.2.3/src/reposnap/core}/__init__.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/src/reposnap/core/collector.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/src/reposnap/core/file_system.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/src/reposnap/core/git_repo.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/src/reposnap/core/markdown_generator.py +0 -0
- {reposnap-0.2.2/src/reposnap/core → reposnap-0.2.3/src/reposnap/interfaces}/__init__.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/src/reposnap/interfaces/cli.py +0 -0
- {reposnap-0.2.2/src/reposnap/interfaces → reposnap-0.2.3/src/reposnap/utils}/__init__.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/src/reposnap/utils/path_utils.py +0 -0
- {reposnap-0.2.2/src/reposnap/utils → reposnap-0.2.3/tests}/__init__.py +0 -0
- {reposnap-0.2.2/tests → reposnap-0.2.3/tests/reposnap}/__init__.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/tests/reposnap/test_cli.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/tests/reposnap/test_collector.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/tests/reposnap/test_file_system.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/tests/reposnap/test_git_repo.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/tests/reposnap/test_markdown_generator.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/tests/reposnap/test_path_utils.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/tests/resources/another_existing_file.py +0 -0
- {reposnap-0.2.2 → reposnap-0.2.3}/tests/resources/existing_file.py +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.3
|
2
2
|
Name: reposnap
|
3
|
-
Version: 0.2.
|
3
|
+
Version: 0.2.3
|
4
4
|
Summary: Generate a Markdown file with all contents of your project
|
5
5
|
Author: agoloborodko
|
6
6
|
License-File: LICENSE
|
@@ -25,7 +25,7 @@ Description-Content-Type: text/markdown
|
|
25
25
|
|
26
26
|
### Command-Line Interface
|
27
27
|
|
28
|
-
To use
|
28
|
+
To use `reposnap`, run it with the following options:
|
29
29
|
|
30
30
|
```bash
|
31
31
|
reposnap [-h] [-o OUTPUT] [--structure-only] [--debug] path
|
@@ -42,7 +42,7 @@ reposnap [-h] [-o OUTPUT] [--structure-only] [--debug] path
|
|
42
42
|
1. **Generate a full project structure with file contents**:
|
43
43
|
|
44
44
|
```bash
|
45
|
-
reposnap
|
45
|
+
reposnap .
|
46
46
|
```
|
47
47
|
|
48
48
|
2. **Generate a project structure only**:
|
@@ -13,7 +13,7 @@
|
|
13
13
|
|
14
14
|
### Command-Line Interface
|
15
15
|
|
16
|
-
To use
|
16
|
+
To use `reposnap`, run it with the following options:
|
17
17
|
|
18
18
|
```bash
|
19
19
|
reposnap [-h] [-o OUTPUT] [--structure-only] [--debug] path
|
@@ -30,7 +30,7 @@ reposnap [-h] [-o OUTPUT] [--structure-only] [--debug] path
|
|
30
30
|
1. **Generate a full project structure with file contents**:
|
31
31
|
|
32
32
|
```bash
|
33
|
-
reposnap
|
33
|
+
reposnap .
|
34
34
|
```
|
35
35
|
|
36
36
|
2. **Generate a project structure only**:
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "reposnap"
|
3
|
-
version = "0.2.
|
3
|
+
version = "0.2.3"
|
4
4
|
description = "Generate a Markdown file with all contents of your project"
|
5
5
|
authors = [
|
6
6
|
{ name = "agoloborodko" }
|
@@ -30,4 +30,4 @@ allow-direct-references = true
|
|
30
30
|
packages = ["src/reposnap"]
|
31
31
|
|
32
32
|
[project.scripts]
|
33
|
-
reposnap = "
|
33
|
+
reposnap = "reposnap:main"
|
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
|
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
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|