summaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 5c90ed3f83ed2ddcb8d942c68fc53c7da383ab17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
[build-system]
# Minimum requirements for the build system to execute.
requires = ["setuptools", "wheel", "cython"]  # PEP 508 specification


[tool.towncrier]
    # Do no set this since it is hard to import numpy inside the source directory
    # Use "--version Numpy" instead
    #project = "numpy"
    filename = "doc/release/latest-note.rst"
    directory = "changelog/"
    issue_format = "`#{issue} <https://github.com/numpy/numpy/pull/{issue}>`__"
    template = "changelog/template.rst"
    underlines="~="

    [[tool.towncrier.type]]
        directory = "new_function"
        name = "New functions"
        showcontent = true

    [[tool.towncrier.type]]
        directory = "deprecation"
        name = "Deprecations"
        showcontent = true

    [[tool.towncrier.type]]
      directory = "future"
      name = "Future Changes"
      showcontent = true

    [[tool.towncrier.type]]
      directory = "expired"
      name = "Expired deprecations"
      showcontent = true

    [[tool.towncrier.type]]
      directory = "coompatibility"
      name = "Compatibility notes"
      showcontent = true

    [[tool.towncrier.type]]
      directory = "c_api"
      name = "C API changes"
      showcontent = true

    [[tool.towncrier.type]]
      directory = "new_features"
      name = "New Features"
      showcontent = true

    [[tool.towncrier.type]]
      directory = "improvements"
      name = "Improvements"
      showcontent = true

    [[tool.towncrier.type]]
      directory = "changes"
      name = "Changes"
      showcontent = true