Skip to content

Commit f010759

Browse files
committed
Add tox
1 parent 69191c9 commit f010759

File tree

3 files changed

+20
-1
lines changed

3 files changed

+20
-1
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
*.egg-info
2+
.tox/
3+
build/
4+
dist/

setup.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,3 @@
2222
'pandas>=0.11.0',
2323
'numpy>=1.6.1']
2424
)
25-

tox.ini

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[tox]
2+
envlist = py27
3+
4+
[testenv]
5+
deps =
6+
pip==7.0.1
7+
setuptools==16.0
8+
wheel==0.24.0
9+
10+
commands =
11+
pip install numpy --no-index
12+
pip install scipy --no-index
13+
pip install pandas --no-index
14+
pip install scikit-learn --no-index
15+
python setup.py develop
16+
python setup.py bdist_wheel

0 commit comments

Comments
 (0)