-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
- Loading branch information
1 parent
fb9d9e1
commit ed7e3c9
Showing
1 changed file
with
17 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,28 @@ | ||
[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 <[email protected]>"] | ||
maintainers = ["junghoon-vans <[email protected]>"] | ||
authors = [ "junghoon-vans <[email protected]>" ] | ||
maintainers = [ "junghoon-vans <[email protected]>" ] | ||
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 +31,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", | ||
] |