55 lines
1.0 KiB
TOML
55 lines
1.0 KiB
TOML
|
[build-system]
|
||
|
requires = [
|
||
|
"setuptools>=40.9.0",
|
||
|
"setuptools-scm",
|
||
|
"wheel",
|
||
|
]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[tool.black]
|
||
|
line-length = 80
|
||
|
target-version = ['py36', 'py37']
|
||
|
skip-string-normalization = true
|
||
|
include = '\.pyi?$'
|
||
|
|
||
|
[tool.towncrier]
|
||
|
directory = "changelog/"
|
||
|
filename = "CHANGELOG.rst"
|
||
|
package = "merkle-tree-stream"
|
||
|
package_dir = "merkle-tree-stream"
|
||
|
|
||
|
[[tool.towncrier.type]]
|
||
|
directory = "removal"
|
||
|
name = "Removals"
|
||
|
showcontent = true
|
||
|
|
||
|
[[tool.towncrier.type]]
|
||
|
directory = "deprecation"
|
||
|
name = "Deprecations"
|
||
|
showcontent = true
|
||
|
|
||
|
[[tool.towncrier.type]]
|
||
|
directory = "feature"
|
||
|
name = "Features"
|
||
|
showcontent = true
|
||
|
|
||
|
[[tool.towncrier.type]]
|
||
|
directory = "bugfix"
|
||
|
name = "Bug Fixes"
|
||
|
showcontent = true
|
||
|
|
||
|
[[tool.towncrier.type]]
|
||
|
directory = "doc"
|
||
|
name = "Improved Documentation"
|
||
|
showcontent = true
|
||
|
|
||
|
[[tool.towncrier.type]]
|
||
|
directory = "trivial"
|
||
|
name = "Trivial/Internal Changes"
|
||
|
showcontent = true
|
||
|
|
||
|
[[tool.towncrier.type]]
|
||
|
directory = "announce"
|
||
|
name = "Project announcements"
|
||
|
showcontent = true
|