From 377923c3144e138b181c5f86ed01c06ca79f7fd0 Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Thu, 11 May 2017 10:02:23 +0200 Subject: [PATCH 1/2] Require at least v0.14.0 of future. Added travis config. --- .travis.yml | 14 ++++++++++++++ setup.py | 2 +- 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..44a0774 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,14 @@ +language: python +python: + - "2.6" + - "2.7" + - "3.3" + - "3.4" + - "3.5" + - "3.6" +# commands to install dependencies +install: + - python setup.py -q install +# commands to run tests +script: + - python test.py diff --git a/setup.py b/setup.py index 01b149c..b1c18d0 100644 --- a/setup.py +++ b/setup.py @@ -30,5 +30,5 @@ 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', ], - install_requires=['future'], + install_requires=['future>=0.14.0'], ) \ No newline at end of file From 4d7c9983e7cfd22ed7615cc9bb161399f3cb0b38 Mon Sep 17 00:00:00 2001 From: Phil Ewels Date: Thu, 18 May 2017 18:20:51 +0200 Subject: [PATCH 2/2] Add licence file. --- LICENSE.md | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 LICENSE.md diff --git a/LICENSE.md b/LICENSE.md new file mode 100644 index 0000000..5f9ee7d --- /dev/null +++ b/LICENSE.md @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. +