project_defaults ---------------- .. versionadded:: 3.17 Specify default values for stanzas ``authors``, ``maintainers``, and ``license`` of the :doc:`../dune-project/index` file when initializing a project with ``dune init proj``. The format of the 'project_defaults' stanza is as follows: .. code:: dune (project_defaults ) ```` are: .. describe:: (authors ) Specify authors. Example: .. code:: dune (project_defaults (authors "Jane Doe " "John Doe ")) .. describe:: (maintainers ) Specify maintainers. Example: .. code:: dune (project_defaults (maintainers "Jane Doe " "John Doe ")) .. describe:: (license ) Specify license, ideally as an identifier from the `SPDX License List `__. Example: .. code:: dune (project_defaults (license "MIT"))