wow-addon-packager


Namewow-addon-packager JSON
Version 0.11.3 PyPI version JSON
download
home_pagehttps://github.com/t-mart/wap
SummaryA developer-friendly World of Warcraft addon packager
upload_time2024-03-07 16:46:57
maintainer
docs_urlNone
authorTim Martin
requires_python>=3.12,<4.0
licenseMIT
keywords world of warcraft wow addons
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # wap

[![GitHub Actions CI status for default branch](https://github.com/t-mart/wap/actions/workflows/ci.yml/badge.svg)](https://github.com/t-mart/wap/actions/workflows/ci.yml)
[![Latest release on PyPI](https://img.shields.io/pypi/v/wow-addon-packager)](https://pypi.org/project/wow-addon-packager/)

A developer-friendly World of Warcraft addon packager.

![demonstration of wap usage](https://raw.githubusercontent.com/t-mart/wap/master/docs/assets/demo.gif)

## Features

- [Builds](https://t-mart.github.io/wap/commands/build/) Retail, Wrath, Classic addons (or all
  three!)
- [Publishes](https://t-mart.github.io/wap/commands/publish/) your addons to CurseForge
- [Generates valid TOC files](https://t-mart.github.io/wap/toc-gen/) automagically
- [Continuously rebuilds](https://t-mart.github.io/wap/commands/build/#-watch) your addon during
  development
- Sets up new addon projects quickly, ready to go with one
  [command](https://t-mart.github.io/wap/commands/new-project/)
- Consolidates all configuration in
  [one easy-to-edit file](https://t-mart.github.io/wap/configuration)
- Supports and is tested on Windows, macOS, and Linux
- Has awesome [documentation](https://t-mart.github.io/wap/)

## wap in 5 minutes

These instructions create and upload a working addon without editing a single line of code!

1. Download and install [Python 3.11](https://www.python.org/downloads/).

2. Install `wap`:

    ```console
    pip install --upgrade --user wow-addon-packager
    ```

3. Create a new a project:

    ```console
    wap new-project
    ```

    And then, answer the prompts. Don't worry too much about your answers -- you can always change
    them later in your configuration file.

4. Change to your new project's directory. For example, if you named it `MyAddon` in the last step,
   you'd type:

    ```console
    cd MyAddon
    ```

5. Build your addon package and link it to your local World of Warcraft installation:

    ```console
    wap build --link
    ```

    At this point, **you can play the game with your addon**.

6. Upload your addon to CurseForge with your
   [API token](https://authors.curseforge.com/account/api-tokens) so that others can use it:

    ```console
    wap publish --curseforge-token "<api-token>"
    ```

## Project Information

- License: MIT
- PyPI: <https://pypi.org/project/wow-addon-packager/>
- Source Code: <https://github.com/t-mart/wap>
- Documentation: <https://t-mart.github.io/wap/>
- GitHub Action: <https://github.com/t-mart/wap-action>
- Supported Python Versions: 3.11 and later
- Badge: [![Packaged by wap](https://img.shields.io/badge/packaged%20by-wap-d33682)](https://github.com/t-mart/wap)
- Contribution Guide: <https://t-mart.github.io/wap/contributing>

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/t-mart/wap",
    "name": "wow-addon-packager",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.12,<4.0",
    "maintainer_email": "",
    "keywords": "World of Warcraft,WoW,Addons",
    "author": "Tim Martin",
    "author_email": "tim@timmart.in",
    "download_url": "https://files.pythonhosted.org/packages/1e/43/6c735c2ab63183f56ce530d19056251e3d987c5a604e3d6c008c6f36fd7b/wow_addon_packager-0.11.3.tar.gz",
    "platform": null,
    "description": "# wap\n\n[![GitHub Actions CI status for default branch](https://github.com/t-mart/wap/actions/workflows/ci.yml/badge.svg)](https://github.com/t-mart/wap/actions/workflows/ci.yml)\n[![Latest release on PyPI](https://img.shields.io/pypi/v/wow-addon-packager)](https://pypi.org/project/wow-addon-packager/)\n\nA developer-friendly World of Warcraft addon packager.\n\n![demonstration of wap usage](https://raw.githubusercontent.com/t-mart/wap/master/docs/assets/demo.gif)\n\n## Features\n\n- [Builds](https://t-mart.github.io/wap/commands/build/) Retail, Wrath, Classic addons (or all\n  three!)\n- [Publishes](https://t-mart.github.io/wap/commands/publish/) your addons to CurseForge\n- [Generates valid TOC files](https://t-mart.github.io/wap/toc-gen/) automagically\n- [Continuously rebuilds](https://t-mart.github.io/wap/commands/build/#-watch) your addon during\n  development\n- Sets up new addon projects quickly, ready to go with one\n  [command](https://t-mart.github.io/wap/commands/new-project/)\n- Consolidates all configuration in\n  [one easy-to-edit file](https://t-mart.github.io/wap/configuration)\n- Supports and is tested on Windows, macOS, and Linux\n- Has awesome [documentation](https://t-mart.github.io/wap/)\n\n## wap in 5 minutes\n\nThese instructions create and upload a working addon without editing a single line of code!\n\n1. Download and install [Python 3.11](https://www.python.org/downloads/).\n\n2. Install `wap`:\n\n    ```console\n    pip install --upgrade --user wow-addon-packager\n    ```\n\n3. Create a new a project:\n\n    ```console\n    wap new-project\n    ```\n\n    And then, answer the prompts. Don't worry too much about your answers -- you can always change\n    them later in your configuration file.\n\n4. Change to your new project's directory. For example, if you named it `MyAddon` in the last step,\n   you'd type:\n\n    ```console\n    cd MyAddon\n    ```\n\n5. Build your addon package and link it to your local World of Warcraft installation:\n\n    ```console\n    wap build --link\n    ```\n\n    At this point, **you can play the game with your addon**.\n\n6. Upload your addon to CurseForge with your\n   [API token](https://authors.curseforge.com/account/api-tokens) so that others can use it:\n\n    ```console\n    wap publish --curseforge-token \"<api-token>\"\n    ```\n\n## Project Information\n\n- License: MIT\n- PyPI: <https://pypi.org/project/wow-addon-packager/>\n- Source Code: <https://github.com/t-mart/wap>\n- Documentation: <https://t-mart.github.io/wap/>\n- GitHub Action: <https://github.com/t-mart/wap-action>\n- Supported Python Versions: 3.11 and later\n- Badge: [![Packaged by wap](https://img.shields.io/badge/packaged%20by-wap-d33682)](https://github.com/t-mart/wap)\n- Contribution Guide: <https://t-mart.github.io/wap/contributing>\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "A developer-friendly World of Warcraft addon packager",
    "version": "0.11.3",
    "project_urls": {
        "Documentation": "https://t-mart.github.io/wap/",
        "Homepage": "https://github.com/t-mart/wap",
        "Repository": "https://github.com/t-mart/wap"
    },
    "split_keywords": [
        "world of warcraft",
        "wow",
        "addons"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "54bdc4b5b8b466c3556ea5892d8363538d8b3ccb32257fadebbecb2f069f01fc",
                "md5": "15801ffb18c465c9fc9cfa092d9733bc",
                "sha256": "42465374f2cca8d7e3ae203c1f0eba63237d60fe5cdbc3d7724b672885b38aae"
            },
            "downloads": -1,
            "filename": "wow_addon_packager-0.11.3-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "15801ffb18c465c9fc9cfa092d9733bc",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.12,<4.0",
            "size": 30483,
            "upload_time": "2024-03-07T16:46:56",
            "upload_time_iso_8601": "2024-03-07T16:46:56.740079Z",
            "url": "https://files.pythonhosted.org/packages/54/bd/c4b5b8b466c3556ea5892d8363538d8b3ccb32257fadebbecb2f069f01fc/wow_addon_packager-0.11.3-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "1e436c735c2ab63183f56ce530d19056251e3d987c5a604e3d6c008c6f36fd7b",
                "md5": "20690aa3a6ea8cf66514779a2bf6dc3c",
                "sha256": "646abd0d9ca27820a0bdc5587b6f9ec091a2e5eb3362284c7b73d0157c58f241"
            },
            "downloads": -1,
            "filename": "wow_addon_packager-0.11.3.tar.gz",
            "has_sig": false,
            "md5_digest": "20690aa3a6ea8cf66514779a2bf6dc3c",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.12,<4.0",
            "size": 25047,
            "upload_time": "2024-03-07T16:46:57",
            "upload_time_iso_8601": "2024-03-07T16:46:57.804998Z",
            "url": "https://files.pythonhosted.org/packages/1e/43/6c735c2ab63183f56ce530d19056251e3d987c5a604e3d6c008c6f36fd7b/wow_addon_packager-0.11.3.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-03-07 16:46:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "t-mart",
    "github_project": "wap",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "wow-addon-packager"
}
        
Elapsed time: 0.41486s