From 74ec942552f94c68f8fe591d618c1282dadf8368 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Tue, 10 May 2022 13:24:50 +0100 Subject: [PATCH 1/2] Add link to data analysis docs in README --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 96a39815..b3735baf 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,9 @@ Python 3 tools for reading European XFEL's HDF5 files. -[Documentation](https://extra-data.readthedocs.io/en/latest/) +[EXtra-data documentation](https://extra-data.readthedocs.io/en/latest/) + +See also: [European XFEL data analysis documentation](https://rtd.xfel.eu/docs/data-analysis-user-documentation/en/latest/index.html) Installing ========== From dedd43a8d4363daedc29766dac83784e65cecc33 Mon Sep 17 00:00:00 2001 From: Thomas Kluyver Date: Tue, 10 May 2022 13:29:04 +0100 Subject: [PATCH 2/2] Richer links for PyPI --- setup.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index a65ae496..4237df09 100755 --- a/setup.py +++ b/setup.py @@ -26,7 +26,12 @@ def find_version(*parts): author="European XFEL GmbH", author_email="da-support@xfel.eu", maintainer="Thomas Michelat", - url="https://github.com/European-XFEL/EXtra-data", + project_urls={ + 'Documentation': 'https://extra-data.readthedocs.io/en/latest/', + 'Release notes': 'https://extra-data.readthedocs.io/en/latest/changelog.html', + 'Issues': 'https://github.com/European-XFEL/EXtra-data/issues', + 'Source': 'https://github.com/European-XFEL/EXtra-data', + }, description="Tools to read and analyse data from European XFEL ", long_description=read("README.md"), long_description_content_type='text/markdown',