Metadata-Version: 2.4
Name: toolcraft
Version: 0.1.10rc1
Summary: Craft your tools with ToolCraft.
Author-email: Praveen Kulkarni <praveen@spikingneurons.com>
License: MIT
Keywords: cli,gradio,python
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.12
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.12
Requires-Dist: gitpython>=3.1.43
Requires-Dist: gradio-client>=1.13.3
Requires-Dist: gradio>=5.49.1
Requires-Dist: huggingface-hub[hf-xet]>=0.20.0
Requires-Dist: pillow>=11.3.0
Requires-Dist: pydantic-settings>=2.11.0
Requires-Dist: pydantic>=2.11.10
Requires-Dist: pyyaml>=6.0.3
Requires-Dist: rich>=14.2.0
Provides-Extra: dev
Requires-Dist: mypy>=1.15.0; extra == 'dev'
Requires-Dist: pytest-cov>=7.0.0; extra == 'dev'
Requires-Dist: pytest>=8.3.0; extra == 'dev'
Requires-Dist: ruff>=0.9.0; extra == 'dev'
Requires-Dist: types-pyyaml>=6.0.12.20250915; extra == 'dev'
Description-Content-Type: text/markdown



# Toolcraft

## Installation Instructions


`uv` is a fast Python package installer and resolver. For more information, visit the [official documentation](https://docs.astral.sh/uv/getting-started/installation/).

### Windows

**Option 1: PowerShell Installation**
```powershell
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
```

After installation, run:
```powershell
uvx toolcraft
```

**Option 2: Using Winget**
```bat
winget install --id=astral-sh.uv -e
```

After installation, run:
```powershell
uvx toolcraft
```

### Linux / macOS

```bash
curl -LsSf https://astral.sh/uv/install.sh | sh
```

After installation, run:
```bash
uvx toolcraft
```
