odcli 0.1.4__tar.gz → 0.1.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,11 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: odcli
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: A small CLI for reading and writing notes in a local Obsidian vault.
5
- Author: Chang LeHung
6
- Project-URL: Homepage, https://github.com/Chang-LeHung/obsidian-cli
7
- Project-URL: Repository, https://github.com/Chang-LeHung/obsidian-cli
8
- Project-URL: Issues, https://github.com/Chang-LeHung/obsidian-cli/issues
5
+ Author: odcli contributors
9
6
  Keywords: obsidian,cli,markdown,notes,vault
10
7
  Classifier: Development Status :: 3 - Alpha
11
8
  Classifier: Intended Audience :: Developers
@@ -40,7 +37,7 @@ It works directly on Markdown files inside the vault, so it does not depend on p
40
37
  ## Using uv
41
38
 
42
39
  ```bash
43
- cd /Users/huchang/agents/obsidian_cli
40
+ cd path/to/obsidian_cli
44
41
  uv sync
45
42
  uv run odcli --help
46
43
  ```
@@ -48,14 +45,14 @@ uv run odcli --help
48
45
  Run tests:
49
46
 
50
47
  ```bash
51
- cd /Users/huchang/agents/obsidian_cli
48
+ cd path/to/obsidian_cli
52
49
  uv run python -m unittest discover -s tests
53
50
  ```
54
51
 
55
52
  Build distributions:
56
53
 
57
54
  ```bash
58
- cd /Users/huchang/agents/obsidian_cli
55
+ cd path/to/obsidian_cli
59
56
  uv build
60
57
  ```
61
58
 
@@ -65,14 +62,14 @@ After installation, both `odcli` and `obsidian-cli` are available as command nam
65
62
  ## Run Locally
66
63
 
67
64
  ```bash
68
- cd /Users/huchang/agents/obsidian_cli
65
+ cd path/to/obsidian_cli
69
66
  ./odcli --help
70
67
  ```
71
68
 
72
69
  The compatibility entry point is still available:
73
70
 
74
71
  ```bash
75
- cd /Users/huchang/agents/obsidian_cli
72
+ cd path/to/obsidian_cli
76
73
  ./obsidian-cli --help
77
74
  ```
78
75
 
@@ -102,7 +99,7 @@ Built-in default locations:
102
99
  Example:
103
100
 
104
101
  ```bash
105
- export OBSIDIAN_VAULT="/Users/your-name/Documents/MyVault"
102
+ export OBSIDIAN_VAULT="/path/to/MyVault"
106
103
  ./odcli check
107
104
  ./odcli list
108
105
  ./odcli read Inbox/today.md
@@ -211,6 +208,6 @@ odcli plugin install all-skills
211
208
  ## Testing
212
209
 
213
210
  ```bash
214
- cd /Users/huchang/agents/obsidian_cli
211
+ cd path/to/obsidian_cli
215
212
  uv run python -m unittest discover -s tests
216
213
  ```
@@ -19,7 +19,7 @@ It works directly on Markdown files inside the vault, so it does not depend on p
19
19
  ## Using uv
20
20
 
21
21
  ```bash
22
- cd /Users/huchang/agents/obsidian_cli
22
+ cd path/to/obsidian_cli
23
23
  uv sync
24
24
  uv run odcli --help
25
25
  ```
@@ -27,14 +27,14 @@ uv run odcli --help
27
27
  Run tests:
28
28
 
29
29
  ```bash
30
- cd /Users/huchang/agents/obsidian_cli
30
+ cd path/to/obsidian_cli
31
31
  uv run python -m unittest discover -s tests
32
32
  ```
33
33
 
34
34
  Build distributions:
35
35
 
36
36
  ```bash
37
- cd /Users/huchang/agents/obsidian_cli
37
+ cd path/to/obsidian_cli
38
38
  uv build
39
39
  ```
40
40
 
@@ -44,14 +44,14 @@ After installation, both `odcli` and `obsidian-cli` are available as command nam
44
44
  ## Run Locally
45
45
 
46
46
  ```bash
47
- cd /Users/huchang/agents/obsidian_cli
47
+ cd path/to/obsidian_cli
48
48
  ./odcli --help
49
49
  ```
50
50
 
51
51
  The compatibility entry point is still available:
52
52
 
53
53
  ```bash
54
- cd /Users/huchang/agents/obsidian_cli
54
+ cd path/to/obsidian_cli
55
55
  ./obsidian-cli --help
56
56
  ```
57
57
 
@@ -81,7 +81,7 @@ Built-in default locations:
81
81
  Example:
82
82
 
83
83
  ```bash
84
- export OBSIDIAN_VAULT="/Users/your-name/Documents/MyVault"
84
+ export OBSIDIAN_VAULT="/path/to/MyVault"
85
85
  ./odcli check
86
86
  ./odcli list
87
87
  ./odcli read Inbox/today.md
@@ -190,6 +190,6 @@ odcli plugin install all-skills
190
190
  ## Testing
191
191
 
192
192
  ```bash
193
- cd /Users/huchang/agents/obsidian_cli
193
+ cd path/to/obsidian_cli
194
194
  uv run python -m unittest discover -s tests
195
195
  ```
@@ -4,12 +4,12 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "odcli"
7
- version = "0.1.4"
7
+ version = "0.1.5"
8
8
  description = "A small CLI for reading and writing notes in a local Obsidian vault."
9
9
  readme = "README.md"
10
10
  requires-python = ">=3.11"
11
11
  authors = [
12
- { name = "Chang LeHung" }
12
+ { name = "odcli contributors" }
13
13
  ]
14
14
  dependencies = []
15
15
  keywords = ["obsidian", "cli", "markdown", "notes", "vault"]
@@ -25,11 +25,6 @@ classifiers = [
25
25
  "Environment :: Console",
26
26
  ]
27
27
 
28
- [project.urls]
29
- Homepage = "https://github.com/Chang-LeHung/obsidian-cli"
30
- Repository = "https://github.com/Chang-LeHung/obsidian-cli"
31
- Issues = "https://github.com/Chang-LeHung/obsidian-cli/issues"
32
-
33
28
  [project.scripts]
34
29
  odcli = "obsidian_cli.cli:main"
35
30
  obsidian-cli = "obsidian_cli.cli:main"
@@ -1,3 +1,3 @@
1
1
  __all__ = ["__version__"]
2
2
 
3
- __version__ = "0.1.4"
3
+ __version__ = "0.1.5"
@@ -3,4 +3,3 @@ from obsidian_cli.cli import main
3
3
 
4
4
  if __name__ == "__main__":
5
5
  raise SystemExit(main())
6
-
@@ -1,11 +1,8 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: odcli
3
- Version: 0.1.4
3
+ Version: 0.1.5
4
4
  Summary: A small CLI for reading and writing notes in a local Obsidian vault.
5
- Author: Chang LeHung
6
- Project-URL: Homepage, https://github.com/Chang-LeHung/obsidian-cli
7
- Project-URL: Repository, https://github.com/Chang-LeHung/obsidian-cli
8
- Project-URL: Issues, https://github.com/Chang-LeHung/obsidian-cli/issues
5
+ Author: odcli contributors
9
6
  Keywords: obsidian,cli,markdown,notes,vault
10
7
  Classifier: Development Status :: 3 - Alpha
11
8
  Classifier: Intended Audience :: Developers
@@ -40,7 +37,7 @@ It works directly on Markdown files inside the vault, so it does not depend on p
40
37
  ## Using uv
41
38
 
42
39
  ```bash
43
- cd /Users/huchang/agents/obsidian_cli
40
+ cd path/to/obsidian_cli
44
41
  uv sync
45
42
  uv run odcli --help
46
43
  ```
@@ -48,14 +45,14 @@ uv run odcli --help
48
45
  Run tests:
49
46
 
50
47
  ```bash
51
- cd /Users/huchang/agents/obsidian_cli
48
+ cd path/to/obsidian_cli
52
49
  uv run python -m unittest discover -s tests
53
50
  ```
54
51
 
55
52
  Build distributions:
56
53
 
57
54
  ```bash
58
- cd /Users/huchang/agents/obsidian_cli
55
+ cd path/to/obsidian_cli
59
56
  uv build
60
57
  ```
61
58
 
@@ -65,14 +62,14 @@ After installation, both `odcli` and `obsidian-cli` are available as command nam
65
62
  ## Run Locally
66
63
 
67
64
  ```bash
68
- cd /Users/huchang/agents/obsidian_cli
65
+ cd path/to/obsidian_cli
69
66
  ./odcli --help
70
67
  ```
71
68
 
72
69
  The compatibility entry point is still available:
73
70
 
74
71
  ```bash
75
- cd /Users/huchang/agents/obsidian_cli
72
+ cd path/to/obsidian_cli
76
73
  ./obsidian-cli --help
77
74
  ```
78
75
 
@@ -102,7 +99,7 @@ Built-in default locations:
102
99
  Example:
103
100
 
104
101
  ```bash
105
- export OBSIDIAN_VAULT="/Users/your-name/Documents/MyVault"
102
+ export OBSIDIAN_VAULT="/path/to/MyVault"
106
103
  ./odcli check
107
104
  ./odcli list
108
105
  ./odcli read Inbox/today.md
@@ -211,6 +208,6 @@ odcli plugin install all-skills
211
208
  ## Testing
212
209
 
213
210
  ```bash
214
- cd /Users/huchang/agents/obsidian_cli
211
+ cd path/to/obsidian_cli
215
212
  uv run python -m unittest discover -s tests
216
213
  ```
File without changes
File without changes
File without changes
File without changes
File without changes