Convert bad quotes to only single quote

This commit is contained in:
Liwink 2016-10-11 16:58:58 +08:00
parent b9766ce5df
commit 757f991dae
14 changed files with 41 additions and 41 deletions

View file

@ -6,10 +6,10 @@ with codecs.open('README.rst', encoding='utf-8') as f:
long_description = f.read()
setup(
name="shadowsocks",
version="2.8.2",
name='shadowsocks',
version='2.8.2',
license='http://www.apache.org/licenses/LICENSE-2.0',
description="A fast tunnel proxy that help you get through firewalls",
description='A fast tunnel proxy that help you get through firewalls',
author='clowwindy',
author_email='clowwindy42@gmail.com',
url='https://github.com/shadowsocks/shadowsocks',
@ -18,11 +18,11 @@ setup(
'shadowsocks': ['README.rst', 'LICENSE']
},
install_requires=[],
entry_points="""
entry_points='''
[console_scripts]
sslocal = shadowsocks.local:main
ssserver = shadowsocks.server:main
""",
''',
classifiers=[
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 2',