-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 1.24 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
[tool.poetry]
name = "yatla"
version = "0.4.0"
description = "A templating engine with a simple templating language specifically designed for type inference, allowing consumers to provide users with slots of determined types."
authors = ["Eugene Prout <eugene.prout1@gmail.com>"]
license = "MIT"
readme = "README.md"
[tool.poetry.scripts]
yatla = "yatla.main:main"
[tool.poetry.dependencies]
python = "^3.10"
click = "^8.1.7"
[tool.poetry.group.dev.dependencies]
black = "^24.2.0"
pylint = "^3.1.0"
pytest = "^8.1.1"
pytest-cov = "^4.1.0"
sphinx = "^7.3.7"
myst-parser = "^3.0.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
build_command = "pip install poetry && poetry install && poetry build"
commit_message = "{version}\n\nAutomatically generated by python-semantic-release"
commit_parser = "angular"
# major_on_zero = true UNCOMMENT WHEN v1 RELEASE
tag_format = "v{version}"
version_toml = ["pyproject.toml:tool.poetry.version"]
[tool.semantic_release.changelog]
changelog_file = "CHANGELOG.md"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]