# This file is part of <%= package.name %>.
# <%= package.url %>

# Licensed under the <%= package.license %> license:
# http://www.opensource.org/licenses/<%= package.license%>-license
# Copyright (c) <%= package.created.year %>, <%= package.author.name %> <<%= package.author.email %>>

language: python

python:<% for (var i=0; i < package.travis.length; i++) { %>
    - "<%= package.travis[i] %>"<% } %>

install:
    # install python requirements
    - make setup

script:
    # run tests
    - make test
