Skip to content

Commit

Permalink
update readme and setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
knktc committed Jul 28, 2022
1 parent 55125c1 commit 93e9f75
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 19 deletions.
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
[![Build
Status](https://travis-ci.org/linsomniac/python-memcached.svg)](https://travis-ci.org/linsomniac/python-memcached)

## Overview

This project forks the origin python-memcached project, and fix the SyntaxWarning for python 3.8.

This software is a 100% Python interface to the memcached memory cache
daemon. It is the client side software which allows storing values
in one or more, possibly remote, memcached servers. Search google for
Expand Down
28 changes: 12 additions & 16 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,22 +1,18 @@
#!/usr/bin/env python
from setuptools import setup

from setuptools.depends import get_module_constant
from setuptools import setup # noqa
with open('README.md', 'r') as fh:
long_description = fh.read()


version = get_module_constant('memcache', '__version__')
setup(
name="python-memcached",
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="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"],
name='python-memcached-py38fix',
version='0.0.1',
packages=['python-memcached-py38fix'],
url='https://github.com/knktc/python-memcached',
author='knktc',
author_email='me@knktc.com',
description='A fork of python-memcached, but fix python3.8 syntax warning',
long_description=long_description,
long_description_content_type="text/markdown",
install_requires=open('requirements.txt').read().split(),
classifiers=[
"Development Status :: 5 - Production/Stable",
Expand Down

0 comments on commit 93e9f75

Please sign in to comment.