From bb4f065d00c9a864309ea108e9939a7ca8be70ee Mon Sep 17 00:00:00 2001 From: Paul Hewlett <1104895+eccles@users.noreply.github.com> Date: Tue, 2 Jul 2024 12:08:06 +0100 Subject: [PATCH] Fix twine metadata (#92) twine 4.0 is incompatible with python3.12. (unable to publish package) Upgrade twine and fix warnings. AB#9329 --- requirements-dev.txt | 2 +- setup.cfg | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/requirements-dev.txt b/requirements-dev.txt index 4f8a7d6..79d8fbb 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -8,4 +8,4 @@ pylint~=3.0 # uploading to pypi build~=1.0 -twine~=4.0 +twine~=5.1 diff --git a/setup.cfg b/setup.cfg index 416140e..d395bcc 100644 --- a/setup.cfg +++ b/setup.cfg @@ -9,6 +9,7 @@ author = DataTrails Inc. author_email = support@datatrails.ai description = DataTrails Examples long_description = file: README.md +long_description_content_type = text/markdown url = https://github.com/datatrails/datatrails-samples license = MIT license_files = LICENSE