mirror of
https://github.com/getpelican/pelican.git
synced 2025-10-15 20:28:56 +02:00
Add related project URLs for display on PyPI
Adding `project_urls` and `keywords` to setup.py ensures they will be available for the PyPI package page and any other place/service that may look for these fields.
This commit is contained in:
parent
3f96cb8a4a
commit
db04f01297
1 changed files with 8 additions and 2 deletions
10
setup.py
10
setup.py
|
|
@ -33,11 +33,17 @@ setup(
|
||||||
name='pelican',
|
name='pelican',
|
||||||
version=version,
|
version=version,
|
||||||
url='https://getpelican.com/',
|
url='https://getpelican.com/',
|
||||||
author='Alexis Metaireau',
|
author='Justin Mayer',
|
||||||
maintainer='Justin Mayer',
|
|
||||||
author_email='authors@getpelican.com',
|
author_email='authors@getpelican.com',
|
||||||
description="Static site generator supporting reStructuredText and "
|
description="Static site generator supporting reStructuredText and "
|
||||||
"Markdown source content.",
|
"Markdown source content.",
|
||||||
|
project_urls={
|
||||||
|
'Documentation': 'https://docs.getpelican.com/',
|
||||||
|
'Funding': 'https://donate.getpelican.com/',
|
||||||
|
'Source': 'https://github.com/getpelican/pelican',
|
||||||
|
'Tracker': 'https://github.com/getpelican/pelican/issues',
|
||||||
|
},
|
||||||
|
keywords='static web site generator SSG reStructuredText Markdown',
|
||||||
license='AGPLv3',
|
license='AGPLv3',
|
||||||
long_description=description,
|
long_description=description,
|
||||||
packages=['pelican', 'pelican.tools'],
|
packages=['pelican', 'pelican.tools'],
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue