You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+13-1Lines changed: 13 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -40,12 +40,24 @@ MOSQITO is available on [pip](https://pypi.org/project/pip/). Simply type in a s
40
40
41
41
pip install mosqito
42
42
43
-
This command line should download and install MOSQITO on your computer, along with all the needed dependencies.
43
+
This command line should download and install MOSQITO on your computer, along with the dependencies needed to compute SQ metrics.
44
+
45
+
If you want to perform tests, for instance if you developed a new feature, you will need pytest dependency that can be installed using:
46
+
47
+
pip install mosqito[testing]
44
48
45
49
If you need to import .uff or .unv files, you will need the pyuff package dependency. Note that 'pyuff' is released under the GPL license which prevents MOSQITO from being used in other software that must be under a more permissive license. To include the 'pyuff' dependancy anyway, type the following command:
46
50
47
51
pip install mosqito[uff]
48
52
53
+
If you want to use MOSQITO coupled with SciDataTool, you will need SDT package dependency. To install it along with MOSQITO, use the following command:
54
+
55
+
pip install mosqito[SciDataTool]
56
+
57
+
Note that all the depencies needed for uff, SDT and tests proceeding can be installed at once using:
58
+
59
+
pip install mosqito[all]
60
+
49
61
## Contact
50
62
51
63
You can contact us on Github by opening an issue (to request a feature, ask a question or report a bug).
0 commit comments