Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Fix build deprecation warnings in using pyproject.toml and setuptool #57

Merged
merged 4 commits into from
Sep 29, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"}
Expand Down Expand Up @@ -65,8 +68,7 @@ all = [
]

[project.urls]
"Homepage" = "https://btrdb.io"
"Docs" = "https://btrdb.readthedocs.io"
"Docs" = "https://btrdb-python.readthedocs.io/"
"Repository" = "https://github.com/pingthingsio/btrdb-python.git"

[build-system]
Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
description-file = DESCRIPTION.md
license_file = LICENSE.txt
description_file = DESCRIPTION.md
license_files = LICENSE.txt

[aliases]
test=pytest
Expand Down
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -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": {
Expand Down