diff --git a/CITATION.cff b/CITATION.cff index 01d57521..607c2182 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -4,9 +4,9 @@ authors: - family-names: Green Forge Coop given-names: title: MOSQITO -version: 0.3.5 +version: 0.3.6 doi: 10.5281/zenodo.625 -date-released: 2022-02-24 +date-released: 2022-03-02 keywords: - audio - python diff --git a/README.md b/README.md index 4986086f..66516cdd 100644 --- a/README.md +++ b/README.md @@ -42,10 +42,6 @@ MOSQITO is available on [pip](https://pypi.org/project/pip/). Simply type in a s This command line should download and install MOSQITO on your computer, along with the dependencies needed to compute SQ metrics. -If you want to perform tests, for instance if you developed a new feature, you will need pytest dependency that can be installed using: - - pip install mosqito[testing] - 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: pip install mosqito[uff] @@ -54,7 +50,7 @@ If you want to use MOSQITO coupled with SciDataTool, you will need SDT package d pip install mosqito[SciDataTool] -Note that all the depencies needed for uff, SDT and tests proceeding can be installed at once using: +Note that all the depencies can be installed at once using: pip install mosqito[all] diff --git a/setup.py b/setup.py index 00e26bf5..db88d130 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ import setuptools # /!\ update before a release -MoSQITo_VERSION = "0.3.5" +MoSQITo_VERSION = "0.3.6" # MoSQITo description with open("README.md", "r", encoding="utf-8") as fh: @@ -17,13 +17,9 @@ ).splitlines() # remove endline in each element tests_require = ["pytest>=5.4.1", "pandas", "openpyxl", "SciDataTool"] -uff_require = [ - "pyuff" -] -scidatatool_require = [ - "SciDataTool" -] -all_require = tests_require + uff_require +uff_require = ["pyuff"] +scidatatool_require = ["SciDataTool"] +all_require = tests_require + uff_require setuptools.setup( name="mosqito", @@ -54,5 +50,10 @@ python_requires=python_requires, install_requires=install_requires, tests_require=tests_require, - extras_require={"testing": tests_require, "uff": uff_require, "SciDataTool": scidatatool_require, "all": all_require} + extras_require={ + "testing": tests_require, + "uff": uff_require, + "SciDataTool": scidatatool_require, + "all": all_require, + }, )