Skip to content

Commit

Permalink
[NF] Pre-release commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Glesser committed Mar 2, 2022
1 parent 7d83590 commit ded66a5
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 16 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 1 addition & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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]

Expand Down
19 changes: 10 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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:
Expand All @@ -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",
Expand Down Expand Up @@ -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,
},
)

0 comments on commit ded66a5

Please sign in to comment.