Skip to content

Commit

Permalink
fix travis setup
Browse files Browse the repository at this point in the history
  • Loading branch information
hargup committed Nov 3, 2014
1 parent 2ec5283 commit cea62e2
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,12 @@ language: python
python:
- 2.7

before_install:
- pip install flake8

install:
- pip install -r requirements.txt
- python setup.py install

script:
- py.test cv
- flake8 --exit-zero cv

after_success:
- coveralls
- py.test agv_cv
- flake8 --exit-zero agv_cv
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
PIL>=1.1.7
Pillow>=2.6.1
scikit-image>=0.10.1
scipy>=0.14.0
Expand Down
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#! /usr/bin/env python
from distutils.core import setup
setup(name='agv_cv',
version='0.1',
packages=['agv_cv'],
install_requires=[
'scipy',
'numpy',
],
)

0 comments on commit cea62e2

Please sign in to comment.