diff options
| author | Sean Reifschneider <sean@realgo.com> | 2017-12-15 09:39:50 -0700 |
|---|---|---|
| committer | Sean Reifschneider <sean@realgo.com> | 2017-12-15 09:39:50 -0700 |
| commit | bad41222379102e3f18f6f2f7be3ee608de6fbff (patch) | |
| tree | cb4f7f9fce2168ed78249709afc0ae31a442b38d /setup.py | |
| parent | 7942465eba2009927e5d14b4b6dbd48b75780d80 (diff) | |
| download | python-memcached-bad41222379102e3f18f6f2f7be3ee608de6fbff.tar.gz | |
Fixing download URLs, release script
Diffstat (limited to 'setup.py')
| -rw-r--r-- | setup.py | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -4,17 +4,18 @@ from setuptools.depends import get_module_constant from setuptools import setup # noqa +version = get_module_constant('memcache', '__version__') setup( name="python-memcached", - version=get_module_constant('memcache', '__version__'), + version=version, description="Pure python memcached client", long_description=open("README.md").read(), author="Evan Martin", author_email="martine@danga.com", maintainer="Sean Reifschneider", maintainer_email="jafo@tummy.com", - url="http://www.tummy.com/Community/software/python-memcached/", - download_url="ftp://ftp.tummy.com/pub/python-memcached/", + url="https://github.com/linsomniac/python-memcached", + download_url="https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz".format(version), py_modules=["memcache"], install_requires=open('requirements.txt').read().split(), classifiers=[ |
