Metadata-Version: 2.4
Name: sunjeet-tools
Version: 0.1.0
Summary: Personal utility tools by Sunjeet
Author: Sunjeet
License: MIT
Project-URL: Homepage, https://github.com/SunjeetKajla/sunjeet-tools
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# Sunjeet Tools

Personal utility library with common development tools.

## Installation

```bash
pip install sunjeet-tools
```

## Features

### Git Tools
- `gacp`: Git Add, Commit, Push in one command

### Utils
- JSON file operations
- Directory utilities

## Usage

### As Library
```python
from sunjeet_tools import gacp

# Quick git workflow
gacp(".", "Initial commit", "main")
```

### CLI Commands
```bash
# Git add, commit, push
gacp "." "commit message" "main"
```

## License

MIT
