File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -63,13 +63,20 @@ DESCRIPTION = (
63
63
URL = 'https://{{scm_host}}/{{organisation}}/{{name}}'
64
64
DOWNLOAD_URL = '%s/archive/{{release}}.tar.gz' % URL
65
65
FILES = ['README.rst',{%block morefiles %}{%endblock%} 'CHANGELOG.rst']
66
+ {% if self.additional_keywords %}
67
+ {% set additional_keywords = self.additional_keywords() %}
68
+ {% if additional_keywords and not additional_keywords.rstrip().endswith(',') %}
69
+ {% set additional_keywords = additional_keywords.rstrip() + ',\n' %}
70
+ {% endif %}
71
+ {% endif %}
66
72
KEYWORDS = [
67
- 'python',
68
73
{% for keyword in keywords %}
69
74
'{{keyword}}',
70
75
{% endfor %}
71
- {%block additional_keywords%}
72
- {%endblock%}
76
+ {% if additional_keywords %}
77
+ {{ additional_keywords -}}
78
+ {% endif %}
79
+ 'python',
73
80
]
74
81
75
82
CLASSIFIERS = [
You can’t perform that action at this time.
0 commit comments