fancygit 1.0.16__tar.gz → 1.0.17__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.
- {fancygit-1.0.16 → fancygit-1.0.17}/PKG-INFO +1 -1
- fancygit-1.0.17/VERSION +1 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/fancygit.egg-info/PKG-INFO +1 -1
- {fancygit-1.0.16 → fancygit-1.0.17}/setup.py +5 -1
- fancygit-1.0.17/src/mermaid_export.py +1025 -0
- fancygit-1.0.16/VERSION +0 -1
- fancygit-1.0.16/src/mermaid_export.py +0 -430
- {fancygit-1.0.16 → fancygit-1.0.17}/.fancygit_config +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/CD_GUIDE.md +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/COLOR_SYSTEM_GUIDE.md +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/EMAIL_SETUP_GUIDE.md +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/LICENSE +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/MANIFEST.in +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/README.md +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/TESTING_GUIDE.md +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/TESTING_SUMMARY.md +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/command-list.txt +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/fancygit.egg-info/SOURCES.txt +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/fancygit.egg-info/dependency_links.txt +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/fancygit.egg-info/entry_points.txt +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/fancygit.egg-info/requires.txt +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/fancygit.egg-info/top_level.txt +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/fancygit.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/setup.cfg +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/__init__.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/colors.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/git_error.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/git_error_parser.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/git_insights.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/git_runner.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/loading_animation.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/merge_conflict.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/ollama_client.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/output_colorizer.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/repo_state.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/src/utils.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/__init__.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/conftest.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/test_conflict_parser_integration.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/test_fancygit_advanced.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/test_fancygit_commands.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/test_fancygit_integration.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/test_fancygit_workflows.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/test_git_error.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/test_git_error_parser.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/tests/test_git_runner.py +0 -0
- {fancygit-1.0.16 → fancygit-1.0.17}/welcome.py +0 -0
fancygit-1.0.17/VERSION
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
1.0.17
|
|
@@ -8,11 +8,15 @@ class CustomBuildPy(_build_py):
|
|
|
8
8
|
# Run the original build command
|
|
9
9
|
_build_py.run(self)
|
|
10
10
|
|
|
11
|
-
# Copy data files to
|
|
11
|
+
# Copy data files to build directory alongside fancygit.py
|
|
12
12
|
build_lib = os.path.join(self.build_lib, '')
|
|
13
13
|
if os.path.exists(build_lib):
|
|
14
14
|
shutil.copy('command-list.txt', os.path.join(build_lib, 'command-list.txt'))
|
|
15
15
|
shutil.copy('.fancygit_config', os.path.join(build_lib, '.fancygit_config'))
|
|
16
|
+
# Copy images folder for logo files
|
|
17
|
+
if os.path.exists('images'):
|
|
18
|
+
shutil.copytree('images', os.path.join(build_lib, 'images'))
|
|
19
|
+
|
|
16
20
|
import os
|
|
17
21
|
|
|
18
22
|
# Read version from VERSION file or default to 1.0.0
|