From 91310ca5f7dc996849a31e834babd713f443d9e7 Mon Sep 17 00:00:00 2001 From: Jeff Lin <42981468+jleifnf@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:18:18 -0700 Subject: [PATCH 1/4] update setuptools parameters for strict standards starting 2023-Oct-30 --- pyproject.toml | 3 +++ setup.cfg | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 80f656d..bd3f3af 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,6 +4,9 @@ version = "5.31.0" authors = [ {name="PingThingsIO", email="support@pingthings.io"}, ] +maintainers = [ + {name="PingThingsIO", email="support@pingthings.io"}, +] description = "Bindings to interact with the Berkeley Tree Database using gRPC." readme = "README.md" license = {file="LICENSE.txt"} diff --git a/setup.cfg b/setup.cfg index 3f445b3..8d1166f 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] -description-file = DESCRIPTION.md -license_file = LICENSE.txt +description_file = DESCRIPTION.md +license_files = LICENSE.txt [aliases] test=pytest From 6931b014b899a53f6aa1337d5c3fb8b4fc5f5ca5 Mon Sep 17 00:00:00 2001 From: Jeff Lin <42981468+jleifnf@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:22:21 -0700 Subject: [PATCH 2/4] remove invalid url for homepage of the project --- pyproject.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bd3f3af..d669b8d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,7 +68,6 @@ all = [ ] [project.urls] -"Homepage" = "https://btrdb.io" "Docs" = "https://btrdb.readthedocs.io" "Repository" = "https://github.com/pingthingsio/btrdb-python.git" From 9f90fcc3e6b4047aef25caa6a600121f82a42b06 Mon Sep 17 00:00:00 2001 From: Jeff Lin <42981468+jleifnf@users.noreply.github.com> Date: Thu, 28 Sep 2023 15:22:55 -0700 Subject: [PATCH 3/4] remove invalid url for homepage of the project --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index a5b82d1..33d30ab 100644 --- a/setup.py +++ b/setup.py @@ -133,7 +133,6 @@ def get_description_type(path=PKG_DESCRIBE): "license": LICENSE, "author": AUTHOR, "author_email": EMAIL, - "url": URL, "maintainer": MAINTAINER, "maintainer_email": EMAIL, "project_urls": { From 84807dff81fbb6ebfb505ad84729af0b96567a3d Mon Sep 17 00:00:00 2001 From: Jeff Lin <42981468+jleifnf@users.noreply.github.com> Date: Fri, 29 Sep 2023 11:36:21 -0700 Subject: [PATCH 4/4] update the docs url in pyproject.toml --- pyproject.toml | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index d669b8d..d3c9f94 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -68,7 +68,7 @@ all = [ ] [project.urls] -"Docs" = "https://btrdb.readthedocs.io" +"Docs" = "https://btrdb-python.readthedocs.io/" "Repository" = "https://github.com/pingthingsio/btrdb-python.git" [build-system] diff --git a/setup.py b/setup.py index 33d30ab..df6ad76 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ REPOSITORY = "https://github.com/PingThingsIO/btrdb-python" PACKAGE = "btrdb" URL = "http://btrdb.io/" -DOCS_URL = "https://btrdb.readthedocs.io/en/latest/" +DOCS_URL = "https://btrdb-python.readthedocs.io/" ## Define the keywords KEYWORDS = ("btrdb", "berkeley", "timeseries", "database", "bindings" "gRPC")