From 6af13bbd49c70267a31b530acf7c10e05648ebbc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 20 May 2024 21:35:24 +0000 Subject: [PATCH] [pre-commit.ci] auto fixes from pre-commit.com hooks for more information, see https://pre-commit.ci --- pyproject.toml | 46 +++++++++++++++++++++++++++------------------- 1 file changed, 27 insertions(+), 19 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 8402ebc..ee7df26 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,22 +1,38 @@ +[build-system] +build-backend = "poetry.core.masonry.api" +requires = [ + "poetry-core", +] + [tool.poetry] name = "varst" version = "1.6.0" description = "Replace substitutions in rst files with variables." -authors = ["junghoon-vans "] -maintainers = ["junghoon-vans "] +authors = [ + "junghoon-vans ", +] +maintainers = [ + "junghoon-vans ", +] license = "MIT" readme = "README.rst" repository = "https://github.com/junghoon-vans/varst" documentation = "https://varst.readthedocs.io/" -keywords = ["rst", "reST", "reStructuredText", "replace", "substitution"] +keywords = [ + "rst", + "reST", + "reStructuredText", + "replace", + "substitution", +] classifiers = [ - "Environment :: Console", - "Topic :: Documentation", - "Topic :: Software Development :: Documentation", - "Topic :: Text Processing", + "Environment :: Console", + "Topic :: Documentation", + "Topic :: Software Development :: Documentation", + "Topic :: Text Processing", ] packages = [ - { include = "varst" }, + { include = "varst" }, ] [tool.poetry.scripts] @@ -25,34 +41,26 @@ varst = 'varst.cli:main' [tool.poetry.dependencies] python = "^3.9" - [tool.poetry.group.dev.dependencies] pre-commit = "^2.21.0" - [tool.poetry.group.test.dependencies] pytest = "^7.2.0" tox = "^3.28.0" - [tool.poetry.group.docs.dependencies] sphinx = "^5.3.0" furo = "^2022.12.7" readthedocs-sphinx-search = "^0.1.2" myst-parser = "^0.18.1" -[build-system] -build-backend = "poetry.core.masonry.api" -requires = [ - "poetry-core", -] - [tool] + [tool.commitizen] name = "cz_conventional_commits" version = "1.6.0" tag_format = "v$version" version_files = [ - "varst/__init__.py", - "pyproject.toml:version", + "varst/__init__.py", + "pyproject.toml:version", ]