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.
- {dotx-3.1.3/src/dotx.egg-info → dotx-3.2.0}/PKG-INFO +22 -1
- {dotx-3.1.3 → dotx-3.2.0}/README.md +21 -0
- {dotx-3.1.3 → dotx-3.2.0}/pyproject.toml +1 -1
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/dotxignore +5 -0
- {dotx-3.1.3 → dotx-3.2.0/src/dotx.egg-info}/PKG-INFO +22 -1
- {dotx-3.1.3 → dotx-3.2.0}/LICENSE +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/MANIFEST.in +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/setup.cfg +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/__init__.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/always-create +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/cli.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/__init__.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/database.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/install_cmd.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/path_cmd.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/progress.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/commands/uninstall_cmd.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/database.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/hierarchy.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/ignore.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/install.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/installed-schema.sql +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/options.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/plan.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx/uninstall.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/SOURCES.txt +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/dependency_links.txt +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/entry_points.txt +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/requires.txt +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/src/dotx.egg-info/top_level.txt +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/tests/test_always_create.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/tests/test_cli.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/tests/test_cli_database.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/tests/test_ignore.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/tests/test_ignore_rules.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/tests/test_install.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/tests/test_options.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/tests/test_path_which.py +0 -0
- {dotx-3.1.3 → dotx-3.2.0}/tests/test_plan.py +0 -0
- {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.
|
|
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
|
Metadata-Version: 2.4
|
|
2
2
|
Name: dotx
|
|
3
|
-
Version: 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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|