1[build-system] 2requires = [ 3 "setuptools; python_version != '3.3'", 4 "setuptools<40.0; python_version == '3.3'", 5 "wheel", 6 "setuptools_scm" 7] 8build-backend = "setuptools.build_meta" 9 10[tool.towncrier] 11 package = "dateutil" 12 package_dir = "dateutil" 13 filename = "NEWS" 14 directory = "changelog.d" 15 title_format = "Version {version} ({project_date})" 16 issue_format = "GH #{issue}" 17 template = "changelog.d/template.rst" 18 19 [[tool.towncrier.type]] 20 directory = "data" 21 name = "Data updates" 22 showcontent = true 23 24 [[tool.towncrier.type]] 25 directory = "deprecations" 26 name = "Deprecations" 27 showcontent = true 28 29 [[tool.towncrier.type]] 30 directory = "feature" 31 name = "Features" 32 showcontent = true 33 34 [[tool.towncrier.type]] 35 directory = "bugfix" 36 name = "Bugfixes" 37 showcontent = true 38 39 [[tool.towncrier.type]] 40 directory = "doc" 41 name = "Documentation changes" 42 showcontent = true 43 44 [[tool.towncrier.type]] 45 directory = "misc" 46 name = "Misc" 47 showcontent = false 48 49