py-twisted/pyproject.toml

66 lines
1.5 KiB
TOML

[tool.towncrier]
package = "twisted"
package_dir = "src"
filename = "NEWS.rst"
[[tool.towncrier.section]]
path = ""
[[tool.towncrier.section]]
path = "conch"
name = "Conch"
[[tool.towncrier.section]]
path = "web"
name = "Web"
[[tool.towncrier.section]]
path = "mail"
name = "Mail"
[[tool.towncrier.section]]
path = "words"
name = "Words"
[[tool.towncrier.section]]
path = "names"
name = "Names"
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bugfixes"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Improved Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "removal"
name = "Deprecations and Removals"
showcontent = true
[[tool.towncrier.type]]
directory = "misc"
name = "Misc"
showcontent = false
[tool.isort]
line_length = 79
sections = "FUTURE,STDLIB,ZOPE,OPENSSL,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
default_section = "THIRDPARTY"
no_lines_before = "LOCALFOLDER"
known_first_party = "twisted"
known_zope = "zope"
known_openssl = "OpenSSL"
multi_line_output = 3
include_trailing_comma = true
combine_as_imports = true
skip = "src/twisted/logger/__init__.py,src/twisted/internet/reactor.py"