The current default of having a dedicated option for the maintainer is a
bit annoying:
- If someone is using a cookiecutter template, they are most likely
starting a new project, which means they are both the author and the
maintainer. In this case, only author needs to be set.
- The current default of null doesn't entirely work, and you're left
with things like `__maintainer__ = 'None <None>'` in a few places.
Having to remove these by hand is a little tedious.
To keep with the minimalism, this commit just removes the option to set
maintainer_name and maintainer_email.
36 lines
793 B
ReStructuredText
36 lines
793 B
ReStructuredText
{{ cookiecutter.package_name }}
|
|
{{ cookiecutter.package_name|count * "=" }}
|
|
|
|
{% if cookiecutter.readme_pypi_badge -%}
|
|
.. image:: https://pypip.in/v/{{ cookiecutter.package_name }}/badge.png
|
|
:target: https://pypi.python.org/pypi/{{ cookiecutter.package_name }}
|
|
:alt: Latest PyPI version
|
|
{%- endif %}
|
|
|
|
{% if cookiecutter.readme_travis_badge -%}
|
|
.. image:: {{ cookiecutter.readme_travis_url }}.png
|
|
:target: {{ cookiecutter.readme_travis_url }}
|
|
:alt: Latest Travis CI build status
|
|
{%- endif %}
|
|
|
|
{{ cookiecutter.package_description }}
|
|
|
|
Usage
|
|
-----
|
|
|
|
Installation
|
|
------------
|
|
|
|
Requirements
|
|
^^^^^^^^^^^^
|
|
|
|
Compatibility
|
|
-------------
|
|
|
|
Licence
|
|
-------
|
|
|
|
Authors
|
|
-------
|
|
|
|
`{{ cookiecutter.package_name }}` was written by `{{ cookiecutter.author_name }} <{{ cookiecutter.author_email }}>`_.
|