Added six to requirements

This commit is contained in:
Syrus Akbary 2015-09-24 02:30:08 -07:00
parent cb6809c5f0
commit f2bc5eddd5
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@ sudo: false
python: python:
- 2.7 - 2.7
install: install:
- pip install pytest pytest-cov coveralls flake8 - pip install pytest pytest-cov coveralls flake8 six
- pip install git+https://github.com/dittos/graphqllib.git # Last version of graphqllib - pip install git+https://github.com/dittos/graphqllib.git # Last version of graphqllib
- pip install graphql-relay - pip install graphql-relay
- python setup.py develop - python setup.py develop

View File

@ -47,6 +47,7 @@ setup(
packages=find_packages(exclude=['tests']), packages=find_packages(exclude=['tests']),
install_requires=[ install_requires=[
'six',
'graphqllib', 'graphqllib',
'graphql-relay' 'graphql-relay'
], ],