summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Lord <davidism@gmail.com>2021-02-24 10:03:18 -0800
committerDavid Lord <davidism@gmail.com>2021-02-24 10:03:18 -0800
commit315f480df2de894f2f3faadb885091f9e21aebc1 (patch)
treeb1e305af3e1656201fe2054d26f1dc01ea93c783
parent7afa1baf970709193892fe94a25eaf91e45540d5 (diff)
downloadmarkupsafe-315f480df2de894f2f3faadb885091f9e21aebc1.tar.gz
update project links
-rw-r--r--README.rst21
-rw-r--r--docs/conf.py8
-rw-r--r--setup.cfg8
3 files changed, 22 insertions, 15 deletions
diff --git a/README.rst b/README.rst
index 26f2e44..273e1db 100644
--- a/README.rst
+++ b/README.rst
@@ -49,9 +49,9 @@ Donate
------
The Pallets organization develops and supports MarkupSafe and other
-libraries that use it. In order to grow the community of contributors
-and users, and allow the maintainers to devote more time to the
-projects, `please donate today`_.
+popular packages. In order to grow the community of contributors and
+users, and allow the maintainers to devote more time to the projects,
+`please donate today`_.
.. _please donate today: https://palletsprojects.com/donate
@@ -59,10 +59,11 @@ projects, `please donate today`_.
Links
-----
-* Website: https://palletsprojects.com/p/markupsafe/
-* Documentation: https://markupsafe.palletsprojects.com/
-* Releases: https://pypi.org/project/MarkupSafe/
-* Code: https://github.com/pallets/markupsafe
-* Issue tracker: https://github.com/pallets/markupsafe/issues
-* Test status: https://dev.azure.com/pallets/markupsafe/_build
-* Official chat: https://discord.gg/t6rrQZH
+- Documentation: https://markupsafe.palletsprojects.com/
+- Changes: https://markupsafe.palletsprojects.com/changes/
+- PyPI Releases: https://pypi.org/project/MarkupSafe/
+- Source Code: https://github.com/pallets/markupsafe/
+- Issue Tracker: https://github.com/pallets/markupsafe/issues/
+- Website: https://palletsprojects.com/p/markupsafe/
+- Twitter: https://twitter.com/PalletsTeam
+- Chat: https://discord.gg/pallets
diff --git a/docs/conf.py b/docs/conf.py
index 881f1ab..102ec7a 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -27,11 +27,13 @@ html_theme = "jinja"
html_theme_options = {"index_sidebar_logo": False}
html_context = {
"project_links": [
- ProjectLink("Donate to Pallets", "https://palletsprojects.com/donate"),
- ProjectLink("Website", "https://palletsprojects.com/p/markupsafe/"),
- ProjectLink("PyPI releases", "https://pypi.org/project/MarkupSafe/"),
+ ProjectLink("Donate", "https://palletsprojects.com/donate"),
+ ProjectLink("PyPI Releases", "https://pypi.org/project/MarkupSafe/"),
ProjectLink("Source Code", "https://github.com/pallets/markupsafe/"),
ProjectLink("Issue Tracker", "https://github.com/pallets/markupsafe/issues/"),
+ ProjectLink("Website", "https://palletsprojects.com/p/markupsafe/"),
+ ProjectLink("Twitter", "https://twitter.com/PalletsTeam"),
+ ProjectLink("Chat", "https://discord.gg/pallets"),
]
}
html_sidebars = {
diff --git a/setup.cfg b/setup.cfg
index 59c0533..f2cd899 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -3,9 +3,13 @@ name = MarkupSafe
version = attr: markupsafe.__version__
url = https://palletsprojects.com/p/markupsafe/
project_urls =
+ Donate = https://palletsprojects.com/donate
Documentation = https://markupsafe.palletsprojects.com/
- Code = https://github.com/pallets/markupsafe
- Issue tracker = https://github.com/pallets/markupsafe/issues
+ Changes = https://markupsafe.palletsprojects.com/changes/
+ Source Code = https://github.com/pallets/markupsafe/
+ Issue Tracker = https://github.com/pallets/markupsafe/issues/
+ Twitter = https://twitter.com/PalletsTeam
+ Chat = https://discord.gg/pallets
license = BSD-3-Clause
license_files = LICENSE.rst
author = Armin Ronacher