diff options
author | Hervé Beraud <hberaud@redhat.com> | 2019-02-20 16:43:16 +0100 |
---|---|---|
committer | Hervé Beraud <hberaud@redhat.com> | 2019-02-21 21:42:13 +0100 |
commit | acc6466a0a19a5c359c2058e892f2fa2e567e55b (patch) | |
tree | 2a945267fce486161e461c9b8c66a3cab78a9a36 /pymemcache/__init__.py | |
parent | 1ab7ef20d71de8289edc26ff2b79b7827b612601 (diff) | |
download | pymemcache-acc6466a0a19a5c359c2058e892f2fa2e567e55b.tar.gz |
Introduce package metadata configuration by using setup.cfg
Since setuptools 30.3.0 we can use setup.cfg to configure package
for build and distribute. These changes propose to adopt a more
modern approach to package pymemcache by using latest and stable
feature of setuptools.
Overview:
- remove python code to maintain
- introduce package metadata,
- centralize version management in package metadata
Diffstat (limited to 'pymemcache/__init__.py')
-rw-r--r-- | pymemcache/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pymemcache/__init__.py b/pymemcache/__init__.py index 6b9aa27..984d042 100644 --- a/pymemcache/__init__.py +++ b/pymemcache/__init__.py @@ -1,4 +1,4 @@ -__version__ = '2.1.1' +__version__ = '2.2.0' from pymemcache.client.base import Client # noqa from pymemcache.client.base import PooledClient # noqa |