We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c39e335 commit 56c66daCopy full SHA for 56c66da
.gitignore
@@ -3,3 +3,4 @@
3
_build
4
build
5
dist
6
+.tox
tox.ini
@@ -0,0 +1,17 @@
1
+# Tox (http://tox.testrun.org/) is a tool for running tests
2
+# in multiple virtualenvs. This configuration file will run the
+# test suite on all supported python versions. To use it, "pip install tox"
+# and then run "tox" from this directory.
+
+[tox]
7
+envlist = py26, py27
8
9
+[testenv]
10
+commands =
11
+ pip install cython
12
+ pip install numpy
13
+ pip install matplotlib
14
+ {envpython} setup.py install
15
+ rm -rf my_project
16
+ multimech-newproject my_project
17
+ multimech-run my_project
0 commit comments