Resolving conflicts from cabrera-py33_fixes.
This commit is contained in:
1
.gitignore
vendored
1
.gitignore
vendored
@@ -2,3 +2,4 @@
|
|||||||
/dist
|
/dist
|
||||||
/python_memcached.egg-info
|
/python_memcached.egg-info
|
||||||
.tox
|
.tox
|
||||||
|
.coverage
|
||||||
|
|||||||
@@ -6,6 +6,7 @@ python:
|
|||||||
- 3.3
|
- 3.3
|
||||||
- 3.4
|
- 3.4
|
||||||
- pypy
|
- pypy
|
||||||
|
- 3.3
|
||||||
install: python setup.py install
|
install: python setup.py install
|
||||||
before_script: pip install nose
|
before_script: pip install nose
|
||||||
script: nosetests
|
script: nosetests
|
||||||
|
|||||||
729
memcache.py
729
memcache.py
File diff suppressed because it is too large
Load Diff
1
requirements.txt
Normal file
1
requirements.txt
Normal file
@@ -0,0 +1 @@
|
|||||||
|
six
|
||||||
8
setup.py
8
setup.py
@@ -1,10 +1,10 @@
|
|||||||
#!/usr/bin/env python
|
#!/usr/bin/env python
|
||||||
|
|
||||||
from setuptools import setup
|
from setuptools import setup # noqa
|
||||||
import memcache
|
|
||||||
|
|
||||||
setup(name="python-memcached",
|
setup(name="python-memcached",
|
||||||
version=memcache.__version__,
|
version="1.53",
|
||||||
description="Pure python memcached client",
|
description="Pure python memcached client",
|
||||||
long_description=open("README.md").read(),
|
long_description=open("README.md").read(),
|
||||||
author="Evan Martin",
|
author="Evan Martin",
|
||||||
@@ -14,6 +14,7 @@ setup(name="python-memcached",
|
|||||||
url="http://www.tummy.com/Community/software/python-memcached/",
|
url="http://www.tummy.com/Community/software/python-memcached/",
|
||||||
download_url="ftp://ftp.tummy.com/pub/python-memcached/",
|
download_url="ftp://ftp.tummy.com/pub/python-memcached/",
|
||||||
py_modules=["memcache"],
|
py_modules=["memcache"],
|
||||||
|
install_requires=open('requirements.txt').read().split(),
|
||||||
classifiers=[
|
classifiers=[
|
||||||
"Development Status :: 5 - Production/Stable",
|
"Development Status :: 5 - Production/Stable",
|
||||||
"Intended Audience :: Developers",
|
"Intended Audience :: Developers",
|
||||||
@@ -31,4 +32,3 @@ setup(name="python-memcached",
|
|||||||
"Programming Language :: Python :: 3.3",
|
"Programming Language :: Python :: 3.3",
|
||||||
"Programming Language :: Python :: 3.4"
|
"Programming Language :: Python :: 3.4"
|
||||||
])
|
])
|
||||||
|
|
||||||
|
|||||||
3
test-requirements.txt
Normal file
3
test-requirements.txt
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
nose
|
||||||
|
coverage
|
||||||
|
hacking
|
||||||
6
tox.ini
6
tox.ini
@@ -7,19 +7,17 @@ skipsdist = True
|
|||||||
usedevelop = True
|
usedevelop = True
|
||||||
# Customize pip command, add -U to force updates.
|
# Customize pip command, add -U to force updates.
|
||||||
install_command = pip install -U {opts} {packages}
|
install_command = pip install -U {opts} {packages}
|
||||||
deps = nose
|
deps = -r{toxinidir}/requirements.txt
|
||||||
|
-r{toxinidir}/test-requirements.txt
|
||||||
commands = nosetests {posargs}
|
commands = nosetests {posargs}
|
||||||
|
|
||||||
[tox:jenkins]
|
[tox:jenkins]
|
||||||
downloadcache = ~/cache/pip
|
downloadcache = ~/cache/pip
|
||||||
|
|
||||||
[testenv:pep8]
|
[testenv:pep8]
|
||||||
deps = hacking
|
|
||||||
commands = flake8
|
commands = flake8
|
||||||
|
|
||||||
[testenv:cover]
|
[testenv:cover]
|
||||||
deps = nose
|
|
||||||
coverage
|
|
||||||
commands = nosetests --with-coverage {posargs}
|
commands = nosetests --with-coverage {posargs}
|
||||||
|
|
||||||
[flake8]
|
[flake8]
|
||||||
|
|||||||
Reference in New Issue
Block a user