Depend on the cffi package

Let both pip and Travis know what we need.
This commit is contained in:
Carlos Martín Nieto
2014-04-13 19:20:45 +02:00
parent e56ab370a7
commit b4bc2b6295
2 changed files with 2 additions and 0 deletions

View File

@@ -11,6 +11,7 @@ env: LIBGIT2=~/libgit2/_install/ LD_LIBRARY_PATH=~/libgit2/_install/lib
before_install:
- sudo apt-get install cmake
- pip install cffi
- "./.travis.sh"
script:

View File

@@ -185,6 +185,7 @@ setup(name='pygit2',
long_description=long_description,
packages=['pygit2'],
package_data={'pygit2': ['decl.h']},
install_requires=['cffi'],
ext_modules=[
Extension('_pygit2', pygit2_exts,
include_dirs=[libgit2_include, 'include'],