mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-01-24 16:24:14 +03:00
Merge pull request #176 from kevgathuku/double-quotes
Use double quotes for author name fields
This commit is contained in:
commit
58b8a9407d
|
@ -42,7 +42,7 @@ master_doc = 'index'
|
|||
|
||||
# General information about the project.
|
||||
project = u'{{ cookiecutter.project_name }}'
|
||||
copyright = u'{{ cookiecutter.year }}, {{ cookiecutter.author_name }}'
|
||||
copyright = u"{{ cookiecutter.year }}, {{ cookiecutter.author_name }}"
|
||||
|
||||
# The version info for the project you're documenting, acts as replacement for
|
||||
# |version| and |release|, also used in various other places throughout the
|
||||
|
@ -187,7 +187,7 @@ latex_documents = [
|
|||
('index',
|
||||
'{{ cookiecutter.repo_name }}.tex',
|
||||
u'{{ cookiecutter.project_name }} Documentation',
|
||||
u'{{ cookiecutter.author_name }}', 'manual'),
|
||||
u"{{ cookiecutter.author_name }}", 'manual'),
|
||||
]
|
||||
|
||||
# The name of an image file (relative to this directory) to place at the top of
|
||||
|
@ -217,7 +217,7 @@ latex_documents = [
|
|||
# (source start file, name, description, authors, manual section).
|
||||
man_pages = [
|
||||
('index', '{{ cookiecutter.repo_name }}', u'{{ cookiecutter.project_name }} Documentation',
|
||||
[u'{{ cookiecutter.author_name }}'], 1)
|
||||
[u"{{ cookiecutter.author_name }}"], 1)
|
||||
]
|
||||
|
||||
# If true, show URL addresses after external links.
|
||||
|
@ -231,7 +231,7 @@ man_pages = [
|
|||
# dir menu entry, description, category)
|
||||
texinfo_documents = [
|
||||
('index', '{{ cookiecutter.repo_name }}', u'{{ cookiecutter.project_name }} Documentation',
|
||||
u'{{ cookiecutter.author_name }}', '{{ cookiecutter.project_name }}',
|
||||
u"{{ cookiecutter.author_name }}", '{{ cookiecutter.project_name }}',
|
||||
'{{ cookiecutter.description }}', 'Miscellaneous'),
|
||||
]
|
||||
|
||||
|
|
|
@ -16,7 +16,7 @@ version = {{ cookiecutter.repo_name }}.__version__
|
|||
setup(
|
||||
name='{{ cookiecutter.project_name }}',
|
||||
version=version,
|
||||
author='{{ cookiecutter.full_name }}',
|
||||
author="{{ cookiecutter.full_name }}",
|
||||
author_email='{{ cookiecutter.email }}',
|
||||
packages=[
|
||||
'{{ cookiecutter.repo_name }}',
|
||||
|
|
Loading…
Reference in New Issue
Block a user