Metadata-Version: 2.4
Name: hexdoc-hexparse
Version: 1.10.2.1.1
Summary: Python web book docgen and hexdoc plugin for HexParse.
Project-URL: Homepage, https://yukkuric.github.io/HexParseMod/
Project-URL: Source, https://github.com/YukkuriC/HexParseMod
Author: YukkuriC
License-File: LICENSE.txt
Keywords: hexdoc
Requires-Python: >=3.11
Requires-Dist: hexdoc-hexcasting~=0.11.3.1.0
Provides-Extra: dev
Requires-Dist: ruff~=0.11.2; extra == 'dev'
Description-Content-Type: text/markdown

# hexdoc-hexparse

Python web book docgen and [hexdoc](https://pypi.org/project/hexdoc) plugin for HexParse.

## Version scheme

We use [hatch-gradle-version](https://pypi.org/project/hatch-gradle-version) to generate the version number based on whichever mod version the docgen was built with.

The version is in this format: `mod-version.python-version.mod-pre.python-dev.python-post`

For example:
* Mod version: `0.11.1-7`
* Python package version: `1.0.dev0`
* Full version: `0.11.1.1.0rc7.dev0`

## Setup

Install Python 3.12.

```sh
python3.12 -m venv venv

.\venv\Scripts\activate   # Windows
. venv/bin/activate.fish  # fish
source venv/bin/activate  # everything else

# run from the repo root, not doc/
pip install -e .[dev]
```

## Usage

For local testing, create a file called `.env` in the repo root following this template:
```sh
GITHUB_REPOSITORY=YukkuriC/HexParseMod
GITHUB_SHA=main
GITHUB_PAGES_URL=https://yukkuric.github.io/HexParseMod/
```

Useful commands:
```sh
# show help
hexdoc -h

# build, merge, and serve the web book in watch mode
nodemon --config doc/nodemon.json

# build, merge, and serve the web book
hexdoc serve

# manually build and merge the web book
hexdoc build
hexdoc merge

# start the Python interpreter with some extra local variables
hexdoc repl
```
