Maintainer
|
{% if distinfo["maintainer"] %}
{{ distinfo["maintainer"] }}
{% else %}
No maintainer specified
{% endif %}
|
Maintainer Email
|
{% if distinfo["maintainer-email"] %}
{{ distinfo["author-email"] }}
{% else %}
No maintainer email specified
{% endif %}
|
Requires Python
|
{% if distinfo["requires-python"] %}
{{ distinfo["requires-python"] }}
{% else %}
No python requirement specified
{% endif %}
|
Requires External
|
{% set requires_external = distinfo["requires-external"] %}
{% if not requires_external %}
No external requirements specified
{% elif requires_external is string %}
{{ requires_external }}
{% else %}
{% for req in requires_external %}
- {{ req }}
{% endfor %}
{% endif %}
|
Requires Dist
|
{% set requires_dist = distinfo["requires-dist"] %}
{% if not requires_dist %}
No requirements specified
{% elif requires_dist is string %}
{{ requires_dist }}
{% else %}
{% for req in requires_dist %}
- {{ req }}
{% endfor %}
{% endif %}
|
Provides Dist
|
{% set provides_dist = distinfo["provides-dist"] %}
{% if not provides_dist %}
No providers specified
{% elif provides_dist is string %}
{{ provides_dist }}
{% else %}
{% for prov in provides_dist %}
- {{ prov }}
{% endfor %}
{% endif %}
|
Obsoletes Dist
|
{% set obsoletes_dist = distinfo["obsoletes-dist"] %}
{% if not obsoletes_dist %}
No obsoletes specified
{% elif obsoletes_dist is string %}
{{ obsoletes_dist }}
{% else %}
{% for obs in obsoletes_dist %}
- {{ obs }}
{% endfor %}
{% endif %}
|
Project URL
|
{% set project_url = distinfo["project-url"] %}
{% if not project_url %}
No Project URL specified
{% elif project_url is string %}
{{ project_url }}
{% else %}
{% for url in project_url %}
- {{ url }}
{% endfor %}
{% endif %}
|