Skip to content
Snippets Groups Projects
pyproject.toml 1.08 KiB
Newer Older
  • Learn to ignore specific revisions
  • [tool.towncrier]
        package = "changes"
        package_dir = ""
        filename = "CHANGELOG"
        directory = "changes/changelog.d/"
        start_string = ".. towncrier\n"
        template = "changes/template.rst"
        issue_format = ""
        title_format = "{version} (unreleased)"
        underlines = "-"
    
        [[tool.towncrier.section]]
            path = ""
    
        [[tool.towncrier.type]]
            directory = "feature"
            name = "Features"
            showcontent = true
    
    
        [[tool.towncrier.type]]
            directory = "enhancement"
            name = "Enhancements"
            showcontent = true
    
    
        [[tool.towncrier.type]]
            directory = "bugfix"
            name = "Bugfixes"
            showcontent = true
    
        [[tool.towncrier.type]]
            directory = "doc"
            name = "Documentation"
            showcontent = true
    
    
        [[tool.towncrier.type]]
            directory = "i18n"
            name = "i18n"
            showcontent = true
    
    
        [[tool.towncrier.type]]
            directory = "misc"
            name = "Other"
            showcontent = true
    
    Eliot Berriot's avatar
    Eliot Berriot committed
    
    [tool.black]
        exclude = "(.git|.hg|.mypy_cache|.tox|.venv|_build|buck-out|build|dist|migrations)"