From c91f60cca38ed012de06b116acb9339c4a992157 Mon Sep 17 00:00:00 2001 From: Graham Dumpleton Date: Mon, 7 Oct 2024 10:23:28 +1100 Subject: [PATCH] Explicitly specify name of README file so twine works. --- setup.cfg | 1 + src/wrapt/__init__.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.cfg b/setup.cfg index 6502971..80536bf 100644 --- a/setup.cfg +++ b/setup.cfg @@ -3,6 +3,7 @@ [metadata] name = wrapt version = attr: wrapt.__version__ +readme = "README.rst" author = Graham Dumpleton author_email = Graham.Dumpleton@gmail.com url = https://github.com/GrahamDumpleton/wrapt diff --git a/src/wrapt/__init__.py b/src/wrapt/__init__.py index 80ac306..5f3fbfc 100644 --- a/src/wrapt/__init__.py +++ b/src/wrapt/__init__.py @@ -1,4 +1,4 @@ -__version_info__ = ('1', '17', '0dev1') +__version_info__ = ('1', '17', '0dev2') __version__ = '.'.join(__version_info__) from .__wrapt__ import (ObjectProxy, CallableObjectProxy, FunctionWrapper,