diff --git a/.gitignore b/.gitignore index 56552ce..2530dce 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,7 @@ *.pyc /build/ /dist/ -/*.egg-info \ No newline at end of file +/*.egg-info +/venv/ +/.pytest_cache/v/cache/ +/.coverage diff --git a/ci.sh b/ci.sh new file mode 100644 index 0000000..b1a1082 --- /dev/null +++ b/ci.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env bash + +virtualenv venv -p python2.7 + +source venv/bin/activate + +pip install requirements.txt +pip install requirements-test.txt + +pycodestyle -v awscurl +py.test -v \ No newline at end of file diff --git a/setup.py b/setup.py index 7ba7bd3..7910edc 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ setup( name='awscurl', - version='0.17', + version='0.18', description='Curl like tool with AWS request signing', url='http://github.com/okigan/awscurl', author='Igor Okulist',