mirror of
https://github.com/cookiecutter/cookiecutter-django.git
synced 2025-01-26 09:14:30 +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.
|
# General information about the project.
|
||||||
project = u'{{ cookiecutter.project_name }}'
|
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
|
# The version info for the project you're documenting, acts as replacement for
|
||||||
# |version| and |release|, also used in various other places throughout the
|
# |version| and |release|, also used in various other places throughout the
|
||||||
|
@ -187,7 +187,7 @@ latex_documents = [
|
||||||
('index',
|
('index',
|
||||||
'{{ cookiecutter.repo_name }}.tex',
|
'{{ cookiecutter.repo_name }}.tex',
|
||||||
u'{{ cookiecutter.project_name }} Documentation',
|
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
|
# 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).
|
# (source start file, name, description, authors, manual section).
|
||||||
man_pages = [
|
man_pages = [
|
||||||
('index', '{{ cookiecutter.repo_name }}', u'{{ cookiecutter.project_name }} Documentation',
|
('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.
|
# If true, show URL addresses after external links.
|
||||||
|
@ -231,7 +231,7 @@ man_pages = [
|
||||||
# dir menu entry, description, category)
|
# dir menu entry, description, category)
|
||||||
texinfo_documents = [
|
texinfo_documents = [
|
||||||
('index', '{{ cookiecutter.repo_name }}', u'{{ cookiecutter.project_name }} Documentation',
|
('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'),
|
'{{ cookiecutter.description }}', 'Miscellaneous'),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@ version = {{ cookiecutter.repo_name }}.__version__
|
||||||
setup(
|
setup(
|
||||||
name='{{ cookiecutter.project_name }}',
|
name='{{ cookiecutter.project_name }}',
|
||||||
version=version,
|
version=version,
|
||||||
author='{{ cookiecutter.full_name }}',
|
author="{{ cookiecutter.full_name }}",
|
||||||
author_email='{{ cookiecutter.email }}',
|
author_email='{{ cookiecutter.email }}',
|
||||||
packages=[
|
packages=[
|
||||||
'{{ cookiecutter.repo_name }}',
|
'{{ cookiecutter.repo_name }}',
|
||||||
|
|
Loading…
Reference in New Issue
Block a user