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,