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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: claudesync
3
- Version: 0.2.4
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.4"
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.claudesync:main"
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.4
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
 
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ claudesync = claudesync.main:main
@@ -1,2 +1,3 @@
1
1
  watchdog
2
2
  requests
3
+ pathspec
@@ -1,2 +0,0 @@
1
- [console_scripts]
2
- claudesync = claudesync.claudesync:main
File without changes
File without changes
File without changes
File without changes