claudesync 0.2.4__tar.gz → 0.2.5__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.4/src/claudesync.egg-info → claudesync-0.2.5}/PKG-INFO +2 -1
- {claudesync-0.2.4 → claudesync-0.2.5}/pyproject.toml +3 -2
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync/__init__.py +3 -2
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync/file_handler.py +2 -2
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync/main.py +3 -3
- {claudesync-0.2.4 → claudesync-0.2.5/src/claudesync.egg-info}/PKG-INFO +2 -1
- claudesync-0.2.5/src/claudesync.egg-info/entry_points.txt +2 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync.egg-info/requires.txt +1 -0
- claudesync-0.2.4/src/claudesync.egg-info/entry_points.txt +0 -2
- {claudesync-0.2.4 → claudesync-0.2.5}/LICENSE +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/README.md +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/setup.cfg +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/setup.py +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync/api_utils.py +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync/debounce.py +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync/gitignore_utils.py +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync/manual_auth.py +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync.egg-info/SOURCES.txt +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/src/claudesync.egg-info/dependency_links.txt +0 -0
- {claudesync-0.2.4 → claudesync-0.2.5}/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.5
|
|
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
|
|
@@ -13,6 +13,7 @@ Description-Content-Type: text/markdown
|
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
Requires-Dist: watchdog
|
|
15
15
|
Requires-Dist: requests
|
|
16
|
+
Requires-Dist: pathspec
|
|
16
17
|
|
|
17
18
|
# ClaudeSync
|
|
18
19
|
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "claudesync"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.5"
|
|
8
8
|
authors = [
|
|
9
9
|
{name = "Jahziah Wagner", email = "jahziah.wagner+pypi@gmail.com"},
|
|
10
10
|
]
|
|
@@ -19,6 +19,7 @@ classifiers = [
|
|
|
19
19
|
dependencies = [
|
|
20
20
|
"watchdog",
|
|
21
21
|
"requests",
|
|
22
|
+
"pathspec",
|
|
22
23
|
]
|
|
23
24
|
|
|
24
25
|
[project.urls]
|
|
@@ -26,7 +27,7 @@ dependencies = [
|
|
|
26
27
|
"Bug Tracker" = "https://github.com/jahwag/claudesync/issues"
|
|
27
28
|
|
|
28
29
|
[project.scripts]
|
|
29
|
-
claudesync = "claudesync.
|
|
30
|
+
claudesync = "claudesync.main:main"
|
|
30
31
|
|
|
31
32
|
[tool.setuptools.packages.find]
|
|
32
33
|
where = ["src"]
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
from .main import main
|
|
2
|
-
from .file_handler import FileUploadHandler
|
|
3
2
|
from .api_utils import fetch_user_id, fetch_projects, select_project, create_project
|
|
3
|
+
from .debounce import DebounceHandler
|
|
4
|
+
from .file_handler import FileUploadHandler
|
|
4
5
|
from .manual_auth import get_session_key
|
|
5
6
|
|
|
6
|
-
__all__ = ['main', 'FileUploadHandler', 'fetch_user_id', 'fetch_projects', 'select_project', 'create_project', 'get_session_key']
|
|
7
|
+
__all__ = ['main', 'FileUploadHandler', 'DebounceHandler', 'fetch_user_id', 'fetch_projects', 'select_project', 'create_project', 'get_session_key']
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
from watchdog.events import FileSystemEventHandler
|
|
3
|
-
from debounce import DebounceHandler
|
|
4
|
-
from gitignore_utils import load_gitignore, should_ignore
|
|
3
|
+
from .debounce import DebounceHandler
|
|
4
|
+
from .gitignore_utils import load_gitignore, should_ignore
|
|
5
5
|
import requests
|
|
6
6
|
|
|
7
7
|
class FileUploadHandler(FileSystemEventHandler):
|
|
@@ -5,10 +5,10 @@ import json
|
|
|
5
5
|
import os
|
|
6
6
|
import sys
|
|
7
7
|
from watchdog.observers import Observer
|
|
8
|
-
from file_handler import FileUploadHandler
|
|
9
|
-
from api_utils import fetch_user_id, fetch_projects, select_project, create_project
|
|
8
|
+
from .file_handler import FileUploadHandler
|
|
9
|
+
from .api_utils import fetch_user_id, fetch_projects, select_project, create_project
|
|
10
10
|
|
|
11
|
-
from manual_auth import get_session_key
|
|
11
|
+
from .manual_auth import get_session_key
|
|
12
12
|
|
|
13
13
|
class ClaudeSyncTUI:
|
|
14
14
|
def __init__(self, session_key, watch_dir, user_id, project_id, delay):
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: claudesync
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.5
|
|
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
|
|
@@ -13,6 +13,7 @@ Description-Content-Type: text/markdown
|
|
|
13
13
|
License-File: LICENSE
|
|
14
14
|
Requires-Dist: watchdog
|
|
15
15
|
Requires-Dist: requests
|
|
16
|
+
Requires-Dist: pathspec
|
|
16
17
|
|
|
17
18
|
# ClaudeSync
|
|
18
19
|
|
|
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
|