Fix the dependencies in the setup.py

This commit is contained in:
mathieui 2014-10-28 22:12:18 +01:00
parent 9eb42bea10
commit c3aa6c029d
No known key found for this signature in database
GPG key ID: C59F84CEEFD616E3
2 changed files with 3 additions and 3 deletions

View file

@ -3,5 +3,5 @@ python:
- "3.4"
install:
- pip install -r requirements.txt
- python setup.py -q build install
- python setup.py build
script: make test

View file

@ -63,8 +63,8 @@ setup(name="poezio",
entry_points={ 'console_scripts': [ 'poezio = poezio:main' ] },
data_files = [('share/man/man1/', ['data/poezio.1'])],
install_requires = ['sleekxmpp==1.2.4',
'dnspython3>=1.11.1'],
install_requires = ['sleekxmpp>=1.2.4',
'dnspython3>=1.10.0'],
extras_require = {'OTR plugin': 'python-potr>=1.0',
'Screen autoaway plugin': 'pyinotify==0.9.4'}
)