From 61acb5811fe1a2c2c35b255ae382adb096fad08f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Piotr=20Ma=C5=9Blanka?= <piotr.maslanka@henrietta.com.pl> Date: Tue, 20 Dec 2016 13:41:42 +0100 Subject: [PATCH] travis + fireworks --- .travis.yml | 9 +++++++++ README.md | 3 +++ setup.py | 9 +++++++++ 3 files changed, 21 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..f9660d7 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,9 @@ +language: python +python: + - "2.7" + - "3.4" + - "3.5" + - "pypy" +cache: pip +script: + - nosetests diff --git a/README.md b/README.md index e1bf351..bcad3d3 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,9 @@ CoolAMQP ======== [](https://badge.fury.io/py/CoolAMQP) +[](https://travis-ci.org/smok-serwis/CoolAMQP) +[]() +[]() When you're tired of fucking with AMQP reconnects. diff --git a/setup.py b/setup.py index c206b4d..967d021 100644 --- a/setup.py +++ b/setup.py @@ -16,5 +16,14 @@ setup(name='CoolAMQP', requires=[ "amqp", "six" + ], + classifiers=[ + 'Programming Language :: Python', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: Implementation :: CPython', + 'Programming Language :: Python :: Implementation :: PyPy', + 'Operating System :: OS Independent' ] ) \ No newline at end of file -- GitLab