summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst13
-rw-r--r--docs/conf.py8
-rw-r--r--setup.cfg8
3 files changed, 18 insertions, 11 deletions
diff --git a/README.rst b/README.rst
index 8c4fea9..95b467a 100644
--- a/README.rst
+++ b/README.rst
@@ -70,10 +70,11 @@ donate today`_.
Links
-----
-- Website: https://palletsprojects.com/p/click/
- Documentation: https://click.palletsprojects.com/
-- Releases: https://pypi.org/project/click/
-- Code: https://github.com/pallets/click
-- Issue tracker: https://github.com/pallets/click/issues
-- Test status: https://dev.azure.com/pallets/click/_build
-- Official chat: https://discord.gg/t6rrQZH
+- Changes: https://click.palletsprojects.com/changes/
+- PyPI Releases: https://pypi.org/project/click/
+- Source Code: https://github.com/pallets/click
+- Issue Tracker: https://github.com/pallets/click/issues
+- Website: https://palletsprojects.com/p/click
+- Twitter: https://twitter.com/PalletsTeam
+- Chat: https://discord.gg/pallets
diff --git a/docs/conf.py b/docs/conf.py
index ed2d13f..63956c5 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -33,11 +33,13 @@ html_theme = "click"
html_theme_options = {"index_sidebar_logo": False}
html_context = {
"project_links": [
- ProjectLink("Donate to Pallets", "https://palletsprojects.com/donate"),
- ProjectLink("Click Website", "https://palletsprojects.com/p/click/"),
- ProjectLink("PyPI releases", "https://pypi.org/project/click/"),
+ ProjectLink("Donate", "https://palletsprojects.com/donate"),
+ ProjectLink("PyPI Releases", "https://pypi.org/project/click/"),
ProjectLink("Source Code", "https://github.com/pallets/click/"),
ProjectLink("Issue Tracker", "https://github.com/pallets/click/issues/"),
+ ProjectLink("Website", "https://palletsprojects.com/"),
+ ProjectLink("Twitter", "https://twitter.com/PalletsTeam"),
+ ProjectLink("Chat", "https://discord.gg/pallets"),
]
}
html_sidebars = {
diff --git a/setup.cfg b/setup.cfg
index 1f98dc5..f928c11 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,9 +3,13 @@ name = click
version = attr: click.__version__
url = https://palletsprojects.com/p/click/
project_urls =
+ Donate = https://palletsprojects.com/donate
Documentation = https://click.palletsprojects.com/
- Code = https://github.com/pallets/click
- Issue tracker = https://github.com/pallets/click/issues
+ Changes = https://click.palletsprojects.com/changes/
+ Source Code = https://github.com/pallets/click/
+ Issue Tracker = https://github.com/pallets/click/issues/
+ Twitter = https://twitter.com/PalletsTeam
+ Chat = https://discord.gg/pallets
license = BSD-3-Clause
license_files = LICENSE.rst
author = Armin Ronacher