summaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authorSean Reifschneider <jafo@tummy.com>2014-06-09 22:49:09 -0600
committerSean Reifschneider <jafo@tummy.com>2014-06-09 22:49:09 -0600
commit2251916a6a1e8f35609d8d963f68ccab8c1b9402 (patch)
treee490e2b60f02c0cf0fc520042460af2ce3e7b2d9 /setup.py
parent918e88c4962f7a53218e127293d615c36740a2a4 (diff)
parent7272650aacadcf23afa69fd13f8a923d0bb60265 (diff)
downloadpython-memcached-2251916a6a1e8f35609d8d963f68ccab8c1b9402.tar.gz
Merge pull request #47 from msabramo/pep8
pep8 cleanup
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py32
1 files changed, 16 insertions, 16 deletions
diff --git a/setup.py b/setup.py
index c5693b5..f105bf2 100644
--- a/setup.py
+++ b/setup.py
@@ -16,19 +16,19 @@ setup(name="python-memcached",
py_modules=["memcache"],
install_requires=open('requirements.txt').read().split(),
classifiers=[
- "Development Status :: 5 - Production/Stable",
- "Intended Audience :: Developers",
- "License :: OSI Approved :: Python Software Foundation License",
- "Operating System :: OS Independent",
- "Programming Language :: Python",
- "Topic :: Internet",
- "Topic :: Software Development :: Libraries :: Python Modules",
- "Programming Language :: Python",
- "Programming Language :: Python :: 2",
- "Programming Language :: Python :: 2.6",
- "Programming Language :: Python :: 2.7",
- "Programming Language :: Python :: 3",
- "Programming Language :: Python :: 3.2",
- "Programming Language :: Python :: 3.3",
- "Programming Language :: Python :: 3.4"
- ])
+ "Development Status :: 5 - Production/Stable",
+ "Intended Audience :: Developers",
+ "License :: OSI Approved :: Python Software Foundation License",
+ "Operating System :: OS Independent",
+ "Programming Language :: Python",
+ "Topic :: Internet",
+ "Topic :: Software Development :: Libraries :: Python Modules",
+ "Programming Language :: Python",
+ "Programming Language :: Python :: 2",
+ "Programming Language :: Python :: 2.6",
+ "Programming Language :: Python :: 2.7",
+ "Programming Language :: Python :: 3",
+ "Programming Language :: Python :: 3.2",
+ "Programming Language :: Python :: 3.3",
+ "Programming Language :: Python :: 3.4"
+ ])