Metadata-Version: 2.4
Name: tch
Version: 1.0.0
Summary: Quick terminal file creation tool
Project-URL: homepage, https://github.com/wyattferguson/tch
Project-URL: repository, https://github.com/wyattferguson/tch.git
Project-URL: documentation, https://github.com/wyattferguson/tch
Project-URL: issues, https://github.com/wyattferguson/tch/issues
Author-email: wyattferguson <wyattf@gmail.com>
License: MIT License
License-File: LICENSE
Keywords: cli,command-line,files,python,touch
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Utilities
Requires-Python: >=3.12
Requires-Dist: click>=8.1.8
Description-Content-Type: text/markdown

# :robot: tch - Quick Command-line File Creation

A version of `touch` command that also works on windows. Quickly create a file or files with the `tch` command.

## Usage + Examples

```
# create a single file
tch example.txt

# pass a full path
tch c:\example.txt

# create multiple files at once
tch test.py config.yml readme.txt
```

## Options

`--verbose` or `-v`

- Show all file creation notices and error messages.

## Development Setup

Installation is pretty straight forward, Im using [UV](https://docs.astral.sh/uv/) to manage everything.

To get it all running from scratch:

```
# spin up a virtual enviroment
uv venv

# activate virtual enviroment
.venv\Scripts\activate

# install all the cool dependancies
uv sync

# run tch
task run

# run pytests
task tests

# build source and wheel
task build

```

## References

- [Click](https://click.palletsprojects.com/en/stable/) - A Python library for building CLI's

## Contact + Support

Created by [Wyatt Ferguson](https://wyattf.bsky.social)

For any questions or comments heres how you can reach me:

### :mailbox_with_mail: Email me at [wyattxdev@duck.com](wyattxdev@duck.com)

### :tropical_drink: Follow on [BlueSky @wyattf](https://wyattf.bsky.social)

If you find this useful and want to tip me a little coffee money:

### :coffee: [Buy Me A Coffee](https://www.buymeacoffee.com/wyattferguson)
