Metadata-Version: 2.4
Name: fastanp
Version: 0.1.0
Summary: A simple Python package for
Author-email: whillhill <ooooofish@126.com>
Maintainer-email: whillhill <ooooofish@126.com>
License: MIT
Project-URL: Homepage, https://github.com/whillhill/fastanp
Project-URL: Repository, https://github.com/whillhill/fastanp
Project-URL: Issues, https://github.com/whillhill/fastanp/issues
Keywords: a2a,store,hello,example
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
Dynamic: license-file

# A2A Store

A simple Python package for A2A Store functionality.

## Installation

```bash
pip install a2astore
```

## Usage

```python
from fastacp import hello_world

# Basic usage
print(hello_world())  # Output: Hello, World! Welcome to A2A Store!

# With custom name
print(hello_world("Alice"))  # Output: Hello, Alice! Welcome to A2A Store!
```

### Command Line Usage

After installation, you can also use the command line tool:

```bash
a2astore-hello
```

## Development

To build the package:

```bash
python -m build
```

To upload to PyPI:

```bash
twine upload dist/*
```

## License

MIT License

## Author

- **whillhill** - [GitHub](https://github.com/whillhill)
- Email: ooooofish@126.com
