Adds missing pyyaml dependency.

This commit is contained in:
Olivier Mangin 2014-04-19 22:08:43 +02:00
parent 071730a49b
commit f59a017d6f
2 changed files with 2 additions and 1 deletions

View File

@ -32,6 +32,7 @@ or for bibtex containing a single file:
Requirements
------------
- python >= 2.6
- [pyYaml](http://pyyaml.org)
- [bibtexparser](https://github.com/sciunto/python-bibtexparser)

View File

@ -8,7 +8,7 @@ setup(name='pubs',
author_email='fabien.benureau+inria@gmail.com',
url='',
description='research papers manager',
requires=['bibtexparser'],
requires=['bibtexparser', 'pyyaml'],
packages=find_packages(),
scripts=['pubs/pubs']
)