blob: 2c7336834da3b37c5a09f184afd89717cb130fe2 [file] [log] [blame]
Cosimo Lupo98c9e372018-06-08 10:11:51 +01001[build-system]
Paul Ganssleca1cd612018-11-11 15:41:58 -05002requires = [
3 "setuptools; python_version != '3.3'",
4 "setuptools<40.0; python_version == '3.3'",
5 "wheel",
6 "setuptools_scm"
7]
Paul Gansslec337b842019-02-04 11:45:01 -05008build-backend = "setuptools.build_meta"
Cosimo Lupo98c9e372018-06-08 10:11:51 +01009
Paul Gansslebf1a79f2018-03-24 10:39:13 -040010[tool.towncrier]
11 package = "dateutil"
12 package_dir = "dateutil"
13 filename = "NEWS"
14 directory = "changelog.d"
Paul Ganssle1792db02018-03-26 10:25:47 -040015 title_format = "Version {version} ({project_date})"
Paul Gansslebf1a79f2018-03-24 10:39:13 -040016 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