Metadata-Version: 2.4
Name: tuft
Version: 0.1.0
Summary: Tenant-unified FineTuning
Author-email: Eric Zhu <test@example.com>
License: MIT
Project-URL: Homepage, https://github.com/Eric Zhu/tuft
Project-URL: Repository, https://github.com/Eric Zhu/tuft
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
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Provides-Extra: dev
Requires-Dist: pytest>=7.0; extra == "dev"
Requires-Dist: pytest-cov>=4.0; extra == "dev"
Requires-Dist: black>=23.0; extra == "dev"
Requires-Dist: flake8>=6.0; extra == "dev"
Requires-Dist: mypy>=1.0; extra == "dev"
Dynamic: license-file

# tuft

Tenant-unified FineTuning

## Installation

```bash
uv pip install tuft
# or
pip install tuft
```

## Usage

```python
import tuft

# Your code here
```

## Development

```bash
# Install in development mode with uv
uv pip install -e ".[dev]"

# Run tests
uv run pytest

# Format code
uv run black src tests

# Type check
uv run mypy src
```

## Building and Publishing

```bash
# Build the package
uv build

# Publish to PyPI
uv publish
```

## License

MIT License - see LICENSE file for details.
