diff options
| author | JT <dieselmachine@gmail.com> | 2015-10-01 00:13:46 +0000 |
|---|---|---|
| committer | JT <dieselmachine@gmail.com> | 2015-10-01 00:13:46 +0000 |
| commit | b84e904a8cbf31d3f26e000006db24a77051db03 (patch) | |
| tree | 8e92544226871c0e302ffa8c923619f9a6b1587b /setup.py | |
| parent | 37f55ca4ad94ca4ade30d6be28e1facb79ac3182 (diff) | |
| download | python-memcached-b84e904a8cbf31d3f26e000006db24a77051db03.tar.gz | |
(#72) setup.py will now pull the version number directly from memcache.py (using setuptools.depends.get_module_constant) in order to prevent discrepancies
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,10 +1,11 @@ #!/usr/bin/env python +from setuptools.depends import get_module_constant from setuptools import setup # noqa setup(name="python-memcached", - version="1.58", + version=get_module_constant('memcache', '__version__'), description="Pure python memcached client", long_description=open("README.md").read(), author="Evan Martin", |
