Metadata-Version: 2.4
Name: seedmusicai-org
Version: 0.1.0
Summary: Python metadata and integration helper package for SeedMusic AI music generation workflows for https://seedmusicai.org
Author-email: SeedMusic AI <support@seedmusicai.org>
License-Expression: MIT
Project-URL: Homepage, https://seedmusicai.org
Project-URL: Documentation, https://seedmusicai.org/docs
Project-URL: Repository, https://github.com/youram470-art/seedmusicai-org-python
Project-URL: Issues, https://github.com/youram470-art/seedmusicai-org-python/issues
Keywords: seedmusicai.org,metadata,integration,seo
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# seedmusicai-org

seedmusicai-org is a lightweight Python metadata and integration helper package for [seedmusicai.org](https://seedmusicai.org).

The package gives automation scripts, content tooling, and future SDK code a stable package name for SeedMusic AI. It exposes the canonical website URL, documentation URL, source repository, local repository path, MDX content path, and Next.js app path used by the project.

## Website focus

SeedMusic AI focuses on AI music generation, lyrics-to-song creation, voice cloning, and melody editing workflows. This package does not try to wrap a private production API yet; it publishes a clear, installable metadata layer that can later grow into a fuller SDK or workflow client.

## Installation

```bash
pip install seedmusicai-org
```

## Quick start

```python
from seedmusicai_org import HOMEPAGE, get_site_info, hello

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

## Metadata API

Use the package when a script needs to know where the site lives, where content is stored, or which repository backs the package.

```python
site = get_site_info()
print(site["name"])
print(site["homepage"])
print(site["content_path"])
print(site["app_path"])
```

Returned metadata includes:

- Site name: SeedMusic AI
- Homepage: https://seedmusicai.org
- Documentation: https://seedmusicai.org/docs
- Package name: seedmusicai-org
- Source repository: https://github.com/youram470-art/seedmusicai-org-python
- Local repository: /Users/mac/Documents/code/seedmusic
- Content path: content/blog
- Next.js app path: src/app

## Common use cases

- reference the SeedMusic AI website from scripts.
- attach site metadata to generation, content, and indexing jobs.
- prepare a small base package for future lyrics-to-song and voice tooling.
- Share a stable public package page that points back to https://seedmusicai.org.

## Automation example

This package is useful in release scripts, SEO tooling, blog generators, indexing jobs, and content maintenance utilities. A script can import the package, derive the content directory, and consistently point generated output back to the public website.

## Links

- Website: https://seedmusicai.org
- Documentation: https://seedmusicai.org/docs
- Source: https://github.com/youram470-art/seedmusicai-org-python
- Issues: https://github.com/youram470-art/seedmusicai-org-python/issues

## License

MIT
