2014-06-29 04:23:14 +02:00
|
|
|
language: python
|
|
|
|
python:
|
|
|
|
- 2.7
|
|
|
|
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
|
|
|
|
install:
|
2014-06-30 00:40:50 +02:00
|
|
|
- pip install arxiv2bib
|
2014-06-29 04:23:14 +02:00
|
|
|
- pip install requesocks
|
|
|
|
- pip install pyPDF2
|
2014-06-30 00:42:19 +02:00
|
|
|
- pip install tear-pages
|
2014-06-29 04:23:14 +02:00
|
|
|
- pip install isbntools
|
|
|
|
- pip install bibtexparser
|
|
|
|
- pip install coveralls
|
2014-06-30 23:23:30 +02:00
|
|
|
- apt-get install -qq poppler-utils
|
|
|
|
- apt-get install -qq djvulibre-bin
|
2014-06-29 04:23:14 +02:00
|
|
|
# - python setup.py install
|
|
|
|
# command to run tests, e.g. python setup.py test
|
|
|
|
script:
|
|
|
|
- nosetests
|
|
|
|
|
|
|
|
after_success:
|
|
|
|
- coveralls
|