Metadata-Version: 2.4
Name: ymliu-tool
Version: 0.1.0
Summary: A simple utility tool by ymliu
Author-email: ymliu <ymliu@example.com>
License: MIT
Project-URL: Homepage, https://github.com/ymliu/ymliu-tool
Project-URL: Repository, https://github.com/ymliu/ymliu-tool
Project-URL: Issues, https://github.com/ymliu/ymliu-tool/issues
Keywords: utility,tool,cli
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: click>=8.0.0
Provides-Extra: dev
Requires-Dist: pytest>=7.0.0; extra == "dev"
Requires-Dist: black>=23.0.0; extra == "dev"

# ymliu-tool

A simple utility tool by ymliu.

## Installation

```bash
pip install ymliu-tool
```

## Usage

### Echo command

```bash
ymliu-tool echo "Hello, World!"
# Output: Hello, World!
```

### Square command

```bash
ymliu-tool square 5
# Output: 5² = 25
```

### Sum command

```bash
ymliu-tool sum 1 2 3 4 5
# Output: Sum: 15
```

### Info command

```bash
ymliu-tool info
# Output: ymliu-tool v0.1.0
#         A simple utility tool by ymliu
```

## Development

```bash
# Clone the repository
git clone https://github.com/ymliu/ymliu-tool.git
cd ymliu-tool

# Install in development mode
pip install -e .

# Install development dependencies
pip install -e ".[dev]"
```

## License

MIT

