claudesync 0.2.1__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.
- {claudesync-0.2.1/src/claudesync.egg-info → claudesync-0.2.3}/PKG-INFO +1 -1
- {claudesync-0.2.1 → claudesync-0.2.3}/pyproject.toml +1 -1
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync/file_handler.py +6 -7
- {claudesync-0.2.1 → claudesync-0.2.3/src/claudesync.egg-info}/PKG-INFO +1 -1
- {claudesync-0.2.1 → claudesync-0.2.3}/LICENSE +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/README.md +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/setup.cfg +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/setup.py +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync/__init__.py +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync/api_utils.py +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync/debounce.py +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync/gitignore_utils.py +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync/main.py +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync/manual_auth.py +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync.egg-info/SOURCES.txt +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync.egg-info/dependency_links.txt +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync.egg-info/entry_points.txt +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync.egg-info/requires.txt +0 -0
- {claudesync-0.2.1 → claudesync-0.2.3}/src/claudesync.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: claudesync
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A tool to synchronize local files with Claude.ai projects
|
|
5
5
|
Author-email: Jahziah Wagner <jahziah.wagner+pypi@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/jahwag/claudesync
|
|
@@ -35,14 +35,13 @@ class FileUploadHandler(FileSystemEventHandler):
|
|
|
35
35
|
self.debouncer.debounce(self.upload_file, event.src_path)
|
|
36
36
|
|
|
37
37
|
def should_ignore_file(self, file_path):
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
return True
|
|
38
|
+
# Check if the file is in the .git directory
|
|
39
|
+
rel_path = os.path.relpath(file_path, self.base_path)
|
|
40
|
+
if rel_path.startswith('.git' + os.path.sep) or rel_path == '.git':
|
|
41
|
+
return True
|
|
43
42
|
|
|
44
|
-
|
|
45
|
-
|
|
43
|
+
# Check if the file should be ignored based on .gitignore
|
|
44
|
+
return should_ignore(self.gitignore, file_path, self.base_path)
|
|
46
45
|
|
|
47
46
|
def api_request(self, method, url, **kwargs):
|
|
48
47
|
try:
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: claudesync
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.3
|
|
4
4
|
Summary: A tool to synchronize local files with Claude.ai projects
|
|
5
5
|
Author-email: Jahziah Wagner <jahziah.wagner+pypi@gmail.com>
|
|
6
6
|
Project-URL: Homepage, https://github.com/jahwag/claudesync
|
|
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
|