Metadata-Version: 2.4
Name: alias-agent
Version: 0.1.0
Summary: Alias agent package
Author-email: AgentScope <test@example.com>
License: MIT
Project-URL: Homepage, https://github.com/AgentScope/alias-agent
Project-URL: Repository, https://github.com/AgentScope/alias-agent
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

# alias-agent

Alias agent package

## Installation

```bash
uv pip install alias-agent
# or
pip install alias-agent
```

## Usage

```python
import alias_agent

# 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.
