diff options
author | Maximilian Hils <git@maximilianhils.com> | 2015-02-07 01:43:25 +0100 |
---|---|---|
committer | Maximilian Hils <git@maximilianhils.com> | 2015-02-07 01:43:25 +0100 |
commit | b6af3fddf4ee2c45a722bd5087c86cee59b8cfa0 (patch) | |
tree | 336f42706e23ecc0997162f7dba8b466b267b7b1 | |
parent | 3c919631d40cef69dacd166dabafc238a753edc8 (diff) | |
download | mitmproxy-b6af3fddf4ee2c45a722bd5087c86cee59b8cfa0.tar.gz mitmproxy-b6af3fddf4ee2c45a722bd5087c86cee59b8cfa0.tar.bz2 mitmproxy-b6af3fddf4ee2c45a722bd5087c86cee59b8cfa0.zip |
pypy support, faster travis builds
-rw-r--r-- | .travis.yml | 11 | ||||
-rw-r--r-- | README.mkd | 6 | ||||
-rw-r--r-- | setup.py | 2 |
3 files changed, 15 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 7c4dca92..a2e8d5ff 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,9 +1,11 @@ language: python +sudo: false python: - "2.7" + - pypy # command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors -install: - - "pip install --src .. -r requirements.txt" +install: + - "pip install --src . -r requirements.txt" # command to run tests, e.g. python setup.py test script: - "nosetests --with-cov --cov-report term-missing" @@ -15,4 +17,7 @@ notifications: - "irc.oftc.net#mitmproxy" on_success: change on_failure: always - +cache: + directories: + - /home/travis/virtualenv/python2.7.9/lib/python2.7/site-packages + - /home/travis/virtualenv/pypy-2.5.0/site-packages
\ No newline at end of file @@ -1,4 +1,8 @@ -[](https://travis-ci.org/mitmproxy/netlib) [](https://coveralls.io/r/mitmproxy/netlib) +[](https://travis-ci.org/mitmproxy/netlib) +[](https://coveralls.io/r/mitmproxy/netlib) +[](https://pypi.python.org/pypi/netlib) +[](https://pypi.python.org/pypi/netlib) +[](https://pypi.python.org/pypi/netlib) Netlib is a collection of network utility classes, used by the pathod and mitmproxy projects. It differs from other projects in some fundamental @@ -26,6 +26,8 @@ setup( "Operating System :: POSIX", "Programming Language :: Python", "Programming Language :: Python :: 2", + "Programming Language :: Python :: Implementation :: CPython", + "Programming Language :: Python :: Implementation :: PyPy", "Topic :: Internet", "Topic :: Internet :: WWW/HTTP", "Topic :: Internet :: WWW/HTTP :: HTTP Servers", |