added travis.yml

This commit is contained in:
Stuart Mitchell
2015-03-15 04:40:51 +00:00
parent 14338c4a37
commit 5e773e6ba0
2 changed files with 16 additions and 1 deletions

15
.travis.yml Normal file
View File

@@ -0,0 +1,15 @@
language: python
python:
- "2.6"
- "2.7"
- "3.2"
- "3.3"
- "3.4"
# does not have headers provided, please ask https://launchpad.net/~pypy/+archive/ppa
# maintainers to fix their pypy-dev package.
- "pypy"
# command to install dependencies
install:
- pip install .
# command to run tests
script: pulptests

View File

@@ -8,7 +8,7 @@ from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup
Description = open('README').read()
Description = open('README.md').read()
License = open('LICENSE').read()