diff --git a/.gitignore b/.gitignore index 2ea9f30..2537689 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,6 @@ *.pyc *.swp +.tox/* dist/* build/* env/* diff --git a/README.rst b/README.rst index fe39a25..b11947f 100644 --- a/README.rst +++ b/README.rst @@ -114,7 +114,7 @@ Please report any issues you may have and feel free to contribute. License ------- -Copyright (c) 2015 Sami Barakat +Copyright (c) 2015-2017 Sami Barakat Licensed under the `MIT license `__. diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..7843653 --- /dev/null +++ b/tox.ini @@ -0,0 +1,6 @@ +[testenv] +basepython = python2.7 +commands = nosetests {posargs} +deps = + nose + mock