From f43c8555f9764bbc03e726789d36741b398c713e Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Tue, 14 Feb 2023 13:49:46 +0300 Subject: [PATCH 1/3] ENH: Replace the free-form license name in the metadata with its SPDX ID --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index ad24c58..da159af 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ def read(fname): author='Continuum Analytics', author_email='blaze-dev@continuum.io', description='A data description language.', - license='BSD', + license='BSD-2-Clause', keywords='data language', url='http://datashape.readthedocs.org/en/latest/', packages=['datashape', 'datashape.util', 'datashape.tests'], From cc6571dfd33ad5eee4c09f81528976f55ba5529c Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Tue, 14 Feb 2023 13:51:43 +0300 Subject: [PATCH 2/3] ENH: Add some URIs into package metadata. --- setup.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/setup.py b/setup.py index da159af..909709b 100644 --- a/setup.py +++ b/setup.py @@ -24,6 +24,10 @@ def read(fname): license='BSD-2-Clause', keywords='data language', url='http://datashape.readthedocs.org/en/latest/', + project_urls = { + "Source Code": "https://github.com/blaze/datashape", + "Bug Tracker": "https://github.com/blaze/datashape/issues", + }, packages=['datashape', 'datashape.util', 'datashape.tests'], install_requires=read('requirements.txt').strip().split('\n'), long_description=read('README.rst'), From 098dbbca8f0aea00418d89951062bd9f36a0c095 Mon Sep 17 00:00:00 2001 From: KOLANICH Date: Tue, 14 Feb 2023 13:53:19 +0300 Subject: [PATCH 3/3] ENH: Move the docs URL into `project_urls` and set the main URL to refer the GitHub repo. --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 909709b..64ded09 100644 --- a/setup.py +++ b/setup.py @@ -23,10 +23,11 @@ def read(fname): description='A data description language.', license='BSD-2-Clause', keywords='data language', - url='http://datashape.readthedocs.org/en/latest/', + url='https://github.com/blaze/datashape', project_urls = { "Source Code": "https://github.com/blaze/datashape", "Bug Tracker": "https://github.com/blaze/datashape/issues", + "Documentation": "https://datashape.readthedocs.io/en/latest/", }, packages=['datashape', 'datashape.util', 'datashape.tests'], install_requires=read('requirements.txt').strip().split('\n'),