diff options
author | Sean Reifschneider <jafo00@gmail.com> | 2023-04-17 17:12:24 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-17 17:12:24 -0600 |
commit | cf51ba46eb84f7b96ffdf74a5472cab380070325 (patch) | |
tree | 06bf25c40adeb25b46e5dc3dd372254c80ca41fb /setup.py | |
parent | ad8dff243d572fc3316ef5ed0557f7b568b40b12 (diff) | |
parent | 12f9bf1fb70082e4dc704cfb037e96335bddaa5f (diff) | |
download | python-memcached-cf51ba46eb84f7b96ffdf74a5472cab380070325.tar.gz |
Merge branch 'master' into master
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 14 |
1 files changed, 8 insertions, 6 deletions
@@ -11,12 +11,13 @@ setup( version=version, description="Pure python memcached client", long_description=open("README.md").read(), + long_description_content_type="text/markdown", author="Evan Martin", author_email="martine@danga.com", maintainer="Sean Reifschneider", - maintainer_email="jafo@tummy.com", + maintainer_email="jafo00@gmail.com", url="https://github.com/linsomniac/python-memcached", - download_url=dl_url.format(version), + download_url="https://github.com/linsomniac/python-memcached/releases/download/{0}/python-memcached-{0}.tar.gz".format(version), # noqa py_modules=["memcache"], install_requires=open('requirements.txt').read().split(), classifiers=[ @@ -28,11 +29,12 @@ setup( "Topic :: Internet", "Topic :: Software Development :: Libraries :: Python Modules", "Programming Language :: Python", - "Programming Language :: Python :: 2", - "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.4", - "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7", + "Programming Language :: Python :: 3.8", + "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], ) |