Skip to content

Commit

Permalink
fix setup.py error
Browse files Browse the repository at this point in the history
  • Loading branch information
knktc committed Jul 28, 2022
1 parent 93e9f75 commit 05936d3
Showing 1 changed file with 11 additions and 12 deletions.
23 changes: 11 additions & 12 deletions setup.py
@@ -1,18 +1,17 @@
from setuptools import setup
#!/usr/bin/env python

from setuptools import setup # noqa

with open('README.md', 'r') as fh:
long_description = fh.read()

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

0 comments on commit 05936d3

Please sign in to comment.