diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..213693f --- /dev/null +++ b/.travis.yml @@ -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 \ No newline at end of file diff --git a/setup.py b/setup.py index 65886e4..009c69c 100644 --- a/setup.py +++ b/setup.py @@ -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()