diff --git a/.tools/copier-answers.yml b/.tools/copier-answers.yml index 420af38..eca1bc0 100644 --- a/.tools/copier-answers.yml +++ b/.tools/copier-answers.yml @@ -2,11 +2,11 @@ _commit: 1c7686408 _src_path: gh:oprypin/py-project-template copyright_date: '2023' mkdocs: false -project_description: Hatch plugin to integrate MkDocs and infer dependencies into an env -project_name: hatch-mkdocs +project_description: Hatch plugin to integrate ProperDocs and infer dependencies into an env +project_name: hatch-properdocs pytest: false -python_distribution_name: hatch-mkdocs +python_distribution_name: hatch-properdocs python_source_path: hatch_mkdocs -repository_name: mkdocs/hatch-mkdocs +repository_name: properdocs/hatch-properdocs script_test: false diff --git a/README.md b/README.md index ea3d1bb..95fddd8 100644 --- a/README.md +++ b/README.md @@ -1,34 +1,34 @@ -# hatch-mkdocs +# hatch-properdocs -**[Hatch] plugin to integrate [MkDocs] and infer dependencies into an env** +**[Hatch] plugin to integrate [ProperDocs] and infer dependencies into an env** -[](https://pypi.org/project/hatch-mkdocs/) -[](https://github.com/ProperDocs/hatch-properdocs/blob/master/LICENSE.md) +[](https://pypi.org/project/hatch-properdocs/) +[](https://github.com/ProperDocs/hatch-properdocs/blob/master/LICENSE.md) [](https://github.com/ProperDocs/hatch-properdocs/actions?query=event%3Apush+branch%3Amaster) -This plugin populates [Hatch] environments with `dependencies` on the fly based on a [`mkdocs.yml`] file. +This plugin populates [Hatch] environments with `dependencies` on the fly based on a [`properdocs.yml`] file. -This is intended to effortlessly manage dependencies for a MkDocs site. +This is intended to effortlessly manage dependencies for a ProperDocs site. -You just need to add this minimal config to Hatch, along with any existing MkDocs config: +You just need to add this minimal config to Hatch, along with any existing ProperDocs config: -
hatch.toml | mkdocs.yml |
|---|
hatch.toml | properdocs.yml |
|---|---|
| ```toml [env] requires = [ - "hatch-mkdocs", + "hatch-properdocs", ] -[env.collectors.mkdocs.docs] -path = "mkdocs.yml" +[env.collectors.properdocs.docs] +path = "properdocs.yml" ``` | ```yaml -site_name: MkDocs example +site_name: ProperDocs example plugins: - autorefs @@ -50,15 +50,15 @@ markdown_extensions: detached = true dependencies = [ "markdown-callouts", - "mkdocs", "mkdocs-autorefs", + "properdocs", "pymdown-extensions", ] [envs.docs.scripts] -build = "mkdocs build -f mkdocs.yml {args}" -serve = "mkdocs serve -f mkdocs.yml {args}" -gh-deploy = "mkdocs gh-deploy -f mkdocs.yml {args}" +build = "properdocs build -f properdocs.yml {args}" +serve = "properdocs serve -f properdocs.yml {args}" +gh-deploy = "properdocs gh-deploy -f properdocs.yml {args}" ``` |