Metadata-Version: 2.4
Name: stowin-py
Version: 0.1.0
Summary: A GNU Stow alternative in Python
Project-URL: Homepage, https://github.com/yourusername/stowin-py
Author-email: Your Name <kmuthish@gmail.com>
License: MIT License
        
        Copyright (c) 2024 Kazuma Hochin
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
License-File: LICENSE
Keywords: dotfiles,stow,symlink
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.9
Requires-Dist: click>=8.0.0
Requires-Dist: tqdm>=4.65.0
Description-Content-Type: text/markdown

# Stowin

A GNU Stow alternative written in Python

## Installation

```bash
pip install stowin-py
```

## Usage

```bash
stowin SOURCE [--target TARGET] [OPTIONS]
```

### Options:
- `-t, --target`: Target directory (defaults to source parent)
- `--dry-run`: Do not actually create symlinks
- `--adopt`: Adopt existing files
- `--force`: Override existing files
- `--backup/--no-backup`: Backup existing files
- `--relative`: Create relative symlinks
- `--ignore`: Ignore regex patterns
- `-v, --verbose`: Increase verbosity

## Example

```bash
stowin ~/.dotfiles -t ~
```
