dotx 3.1.3__tar.gz → 3.2.0__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.
Files changed (40) hide show
  1. {dotx-3.1.3/src/dotx.egg-info → dotx-3.2.0}/PKG-INFO +22 -1
  2. {dotx-3.1.3 → dotx-3.2.0}/README.md +21 -0
  3. {dotx-3.1.3 → dotx-3.2.0}/pyproject.toml +1 -1
  4. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/dotxignore +5 -0
  5. {dotx-3.1.3 → dotx-3.2.0/src/dotx.egg-info}/PKG-INFO +22 -1
  6. {dotx-3.1.3 → dotx-3.2.0}/LICENSE +0 -0
  7. {dotx-3.1.3 → dotx-3.2.0}/MANIFEST.in +0 -0
  8. {dotx-3.1.3 → dotx-3.2.0}/setup.cfg +0 -0
  9. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/__init__.py +0 -0
  10. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/always-create +0 -0
  11. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/cli.py +0 -0
  12. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/__init__.py +0 -0
  13. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/database.py +0 -0
  14. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/install_cmd.py +0 -0
  15. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/path_cmd.py +0 -0
  16. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/progress.py +0 -0
  17. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/uninstall_cmd.py +0 -0
  18. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/database.py +0 -0
  19. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/hierarchy.py +0 -0
  20. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/ignore.py +0 -0
  21. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/install.py +0 -0
  22. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/installed-schema.sql +0 -0
  23. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/options.py +0 -0
  24. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/plan.py +0 -0
  25. {dotx-3.1.3 → dotx-3.2.0}/src/dotx/uninstall.py +0 -0
  26. {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/SOURCES.txt +0 -0
  27. {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/dependency_links.txt +0 -0
  28. {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/entry_points.txt +0 -0
  29. {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/requires.txt +0 -0
  30. {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/top_level.txt +0 -0
  31. {dotx-3.1.3 → dotx-3.2.0}/tests/test_always_create.py +0 -0
  32. {dotx-3.1.3 → dotx-3.2.0}/tests/test_cli.py +0 -0
  33. {dotx-3.1.3 → dotx-3.2.0}/tests/test_cli_database.py +0 -0
  34. {dotx-3.1.3 → dotx-3.2.0}/tests/test_ignore.py +0 -0
  35. {dotx-3.1.3 → dotx-3.2.0}/tests/test_ignore_rules.py +0 -0
  36. {dotx-3.1.3 → dotx-3.2.0}/tests/test_install.py +0 -0
  37. {dotx-3.1.3 → dotx-3.2.0}/tests/test_options.py +0 -0
  38. {dotx-3.1.3 → dotx-3.2.0}/tests/test_path_which.py +0 -0
  39. {dotx-3.1.3 → dotx-3.2.0}/tests/test_plan.py +0 -0
  40. {dotx-3.1.3 → dotx-3.2.0}/tests/test_uninstall.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dotx
3
- Version: 3.1.3
3
+ Version: 3.2.0
4
4
  Summary: A command-line tool to install a link-farm to your dotfiles
5
5
  Author-email: Wolf <Wolf@zv.cx>
6
6
  License-Expression: MIT
@@ -140,6 +140,27 @@ The `.dotxignore` file supports:
140
140
  You can also nest `.dotxignore` files in subdirectories, just like `.gitignore`. Files closer to the matched file take
141
141
  precedence.
142
142
 
143
+ #### Built-in ignore patterns
144
+
145
+ `dotx` comes with sensible defaults that automatically ignore common files you don't want installed to your home directory:
146
+
147
+ - **Documentation**: `README`, `README.*`, `*.md` (for GitHub/docs, not installation)
148
+ - **Version control**: `.git/`, `.gitignore`, `.svn/`, etc.
149
+ - **Python artifacts**: `__pycache__/`, `*.pyc`, `.pytest_cache/`, `.mypy_cache/`
150
+ - **Editor files**: `.vscode/`, `.idea/`, `*.swp`, `*~`
151
+ - **OS files**: `.DS_Store`, `Thumbs.db`
152
+ - **Build artifacts**: `dist/`, `build/`
153
+
154
+ These patterns are always active and work alongside your custom `.dotxignore` files.
155
+
156
+ **Escape hatch**: If you *do* want a normally-ignored file installed, use negation patterns:
157
+
158
+ ```bash
159
+ # In your package/.dotxignore
160
+ !important-notes.md
161
+ !INSTALL.md
162
+ ```
163
+
143
164
  #### Global ignore file
144
165
 
145
166
  Create a global ignore file at `~/.config/dotx/ignore` to exclude patterns from all packages:
@@ -112,6 +112,27 @@ The `.dotxignore` file supports:
112
112
  You can also nest `.dotxignore` files in subdirectories, just like `.gitignore`. Files closer to the matched file take
113
113
  precedence.
114
114
 
115
+ #### Built-in ignore patterns
116
+
117
+ `dotx` comes with sensible defaults that automatically ignore common files you don't want installed to your home directory:
118
+
119
+ - **Documentation**: `README`, `README.*`, `*.md` (for GitHub/docs, not installation)
120
+ - **Version control**: `.git/`, `.gitignore`, `.svn/`, etc.
121
+ - **Python artifacts**: `__pycache__/`, `*.pyc`, `.pytest_cache/`, `.mypy_cache/`
122
+ - **Editor files**: `.vscode/`, `.idea/`, `*.swp`, `*~`
123
+ - **OS files**: `.DS_Store`, `Thumbs.db`
124
+ - **Build artifacts**: `dist/`, `build/`
125
+
126
+ These patterns are always active and work alongside your custom `.dotxignore` files.
127
+
128
+ **Escape hatch**: If you *do* want a normally-ignored file installed, use negation patterns:
129
+
130
+ ```bash
131
+ # In your package/.dotxignore
132
+ !important-notes.md
133
+ !INSTALL.md
134
+ ```
135
+
115
136
  #### Global ignore file
116
137
 
117
138
  Create a global ignore file at `~/.config/dotx/ignore` to exclude patterns from all packages:
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "dotx"
3
- version = "3.1.3"
3
+ version = "3.2.0"
4
4
  description = "A command-line tool to install a link-farm to your dotfiles"
5
5
  authors = [
6
6
  { name = "Wolf", email = "Wolf@zv.cx" }
@@ -9,6 +9,11 @@
9
9
  # *.pyc - wildcard
10
10
  # !important.pyc - exception (don't ignore this one)
11
11
 
12
+ # Documentation files (typically for version control/GitHub, not installation)
13
+ README
14
+ README.*
15
+ *.md
16
+
12
17
  # Version control
13
18
  .git
14
19
  .gitignore
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dotx
3
- Version: 3.1.3
3
+ Version: 3.2.0
4
4
  Summary: A command-line tool to install a link-farm to your dotfiles
5
5
  Author-email: Wolf <Wolf@zv.cx>
6
6
  License-Expression: MIT
@@ -140,6 +140,27 @@ The `.dotxignore` file supports:
140
140
  You can also nest `.dotxignore` files in subdirectories, just like `.gitignore`. Files closer to the matched file take
141
141
  precedence.
142
142
 
143
+ #### Built-in ignore patterns
144
+
145
+ `dotx` comes with sensible defaults that automatically ignore common files you don't want installed to your home directory:
146
+
147
+ - **Documentation**: `README`, `README.*`, `*.md` (for GitHub/docs, not installation)
148
+ - **Version control**: `.git/`, `.gitignore`, `.svn/`, etc.
149
+ - **Python artifacts**: `__pycache__/`, `*.pyc`, `.pytest_cache/`, `.mypy_cache/`
150
+ - **Editor files**: `.vscode/`, `.idea/`, `*.swp`, `*~`
151
+ - **OS files**: `.DS_Store`, `Thumbs.db`
152
+ - **Build artifacts**: `dist/`, `build/`
153
+
154
+ These patterns are always active and work alongside your custom `.dotxignore` files.
155
+
156
+ **Escape hatch**: If you *do* want a normally-ignored file installed, use negation patterns:
157
+
158
+ ```bash
159
+ # In your package/.dotxignore
160
+ !important-notes.md
161
+ !INSTALL.md
162
+ ```
163
+
143
164
  #### Global ignore file
144
165
 
145
166
  Create a global ignore file at `~/.config/dotx/ignore` to exclude patterns from all packages:
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
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