Metadata-Version: 2.4
Name: ExerealCatalog
Version: 1.0.1
Summary: Exereal Catalog — plugin store with easy management for exteraGram/AyuGram
Author: Your Name
License: MIT
Project-URL: Homepage, https://github.com/Exereal-Plugins/Exereal-Catalog
Project-URL: Bug Tracker, https://github.com/Exereal-Plugins/Exereal-Catalog/issues
Keywords: telegram,plugin,exteraGram,AyuGram,plugins-manager
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: requests>=2.31.0

# Exereal Catalog

Магазин плагинов для exteraGram/AyuGram — форк [KangelPluginsManager](https://github.com/KangelPlugins/PluginManager),
переработанный под каталог Exereal Catalog.

## Что нужно донастроить перед публикацией

Поиск по коду на `TODO:` покажет все места:

- `exerealcatalog/plugin.py`:
  - `__author__`, `__icon__` — свои данные/стикер.
  - `store_json_urls` / `github_api_url` — ссылки на твой репозиторий с `store.json`.
  - Ссылки на Telegram-канал/чат/бота поддержки (`open_username(...)`, `open_link(...)`).
- `pyproject.toml` — автор, ссылки Homepage/Bug Tracker.

## Формат store.json

Тот же, что у оригинала — словарь `{plugin_id: {...}}`:

```json
{
  "example_plugin": {
    "url": "https://raw.githubusercontent.com/ExerealCatalog/Store/main/plugins/example_plugin.py",
    "name": "Example Plugin",
    "version": "1.0.0",
    "author": "@someone",
    "description": "Что делает плагин",
    "icon": "SomeSticker/1",
    "min_version": "12.5.1",
    "dependencies": [],
    "requirements": []
  }
}
```
