-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
58 lines (48 loc) · 1.25 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[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]>"]
license = "MIT"
readme = "README.rst"
repository = "https://github.com/junghoon-vans/varst"
documentation = "https://varst.readthedocs.io/"
keywords = ["rst", "reST", "reStructuredText", "replace", "substitution"]
classifiers = [
"Environment :: Console",
"Topic :: Documentation",
"Topic :: Software Development :: Documentation",
"Topic :: Text Processing",
]
packages = [
{ include = "varst" },
]
[tool.poetry.scripts]
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",
]