Metadata-Version: 2.4
Name: wan27-org
Version: 0.1.1
Summary: Python metadata and integration helper package for https://wan27.org
Author-email: "wan27.org" <support@wan27.org>
License-Expression: MIT
Project-URL: Homepage, https://wan27.org
Project-URL: Documentation, https://wan27.org/docs
Project-URL: Repository, https://github.com/youram470-art/wan27-org-python
Project-URL: Issues, https://github.com/youram470-art/wan27-org-python/issues
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# wan27-org

Python integration metadata package for [wan27.org](https://wan27.org).

`wan27-org` provides a small Python entry point for scripts, automation, and
future SDK work that need a stable reference to the wan27.org website. It keeps
the first release intentionally lightweight while still exposing useful package
metadata and simple helpers that can be imported from any Python project.

The package is useful when you want to verify installation, attach wan27.org
metadata to a workflow, or prepare a Python integration layer for the wan27.org
ecosystem.

## Installation

```bash
pip install wan27-org
```

## Usage

```python
from wan27_org import HOMEPAGE, hello

print(hello())
print(HOMEPAGE)
```

You can also read the site metadata as a dictionary:

```python
from wan27_org import get_site_info

site = get_site_info()

print(site["name"])
print(site["homepage"])
print(site["documentation"])
```

Expected values:

```text
wan27.org
https://wan27.org
https://wan27.org/docs
```

## Included Utilities

- `HOMEPAGE` pointing to `https://wan27.org`.
- `hello()` for confirming the package is installed.
- `get_site_info()` for retrieving website, documentation, package, and source
  metadata in one place.
- PyPI metadata for homepage, documentation, repository, and issues.

## Package Metadata

```python
{
    "name": "wan27.org",
    "homepage": "https://wan27.org",
    "documentation": "https://wan27.org/docs",
    "package": "wan27-org",
    "repository": "https://github.com/youram470-art/wan27-org-python",
}
```

## Use Cases

- Add wan27.org metadata to Python automation scripts.
- Verify a PyPI publishing workflow with a clean, importable package.
- Keep a stable Python package name reserved for future wan27.org SDK work.
- Provide a simple package page that links back to the wan27.org website and
  source repository.

## Links

- Website: https://wan27.org
- Documentation: https://wan27.org/docs
- Source: https://github.com/youram470-art/wan27-org-python
- PyPI: https://pypi.org/project/wan27-org/

## License

MIT
