pyo3/pyproject.toml

44 lines
903 B
TOML
Raw Normal View History

2019-09-05 23:16:09 +00:00
[tool.black]
target_version = ['py35']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.mypy_cache
| \.tox
2022-01-16 16:12:40 +00:00
| \.nox
2019-09-05 23:16:09 +00:00
| \.venv
| venv
| target
| dist
)/
)
2022-01-16 16:12:40 +00:00
'''
2022-09-08 06:58:53 +00:00
[tool.towncrier]
filename = "CHANGELOG.md"
2023-05-28 21:47:00 +00:00
version = "0.19.0"
2022-09-08 06:58:53 +00:00
start_string = "<!-- towncrier release notes start -->\n"
template = ".towncrier.template.md"
title_format = "## [{version}] - {project_date}"
issue_format = "[#{issue}](https://github.com/PyO3/pyo3/pull/{issue})" # Note PyO3 shows pulls, not issues, in the CHANGELOG
underlines = ["", "", ""]
[tool.towncrier.fragment.packaging]
name = "Packaging"
[tool.towncrier.fragment.added]
name = "Added"
[tool.towncrier.fragment.changed]
name = "Changed"
[tool.towncrier.fragment.removed]
name = "Removed"
[tool.towncrier.fragment.fixed]
name = "Fixed"