Skip to content

Commit ded66a5

Browse files
author
Martin Glesser
committed
[NF] Pre-release commit
1 parent 7d83590 commit ded66a5

File tree

3 files changed

+13
-16
lines changed

3 files changed

+13
-16
lines changed

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ authors:
44
- family-names: Green Forge Coop
55
given-names:
66
title: MOSQITO
7-
version: 0.3.5
7+
version: 0.3.6
88
doi: 10.5281/zenodo.625
9-
date-released: 2022-02-24
9+
date-released: 2022-03-02
1010
keywords:
1111
- audio
1212
- python

README.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,6 @@ MOSQITO is available on [pip](https://pypi.org/project/pip/). Simply type in a s
4242

4343
This command line should download and install MOSQITO on your computer, along with the dependencies needed to compute SQ metrics.
4444

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]
48-
4945
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:
5046

5147
pip install mosqito[uff]
@@ -54,7 +50,7 @@ If you want to use MOSQITO coupled with SciDataTool, you will need SDT package d
5450

5551
pip install mosqito[SciDataTool]
5652

57-
Note that all the depencies needed for uff, SDT and tests proceeding can be installed at once using:
53+
Note that all the depencies can be installed at once using:
5854

5955
pip install mosqito[all]
6056

setup.py

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import setuptools
22

33
# /!\ update before a release
4-
MoSQITo_VERSION = "0.3.5"
4+
MoSQITo_VERSION = "0.3.6"
55

66
# MoSQITo description
77
with open("README.md", "r", encoding="utf-8") as fh:
@@ -17,13 +17,9 @@
1717
).splitlines() # remove endline in each element
1818

1919
tests_require = ["pytest>=5.4.1", "pandas", "openpyxl", "SciDataTool"]
20-
uff_require = [
21-
"pyuff"
22-
]
23-
scidatatool_require = [
24-
"SciDataTool"
25-
]
26-
all_require = tests_require + uff_require
20+
uff_require = ["pyuff"]
21+
scidatatool_require = ["SciDataTool"]
22+
all_require = tests_require + uff_require
2723

2824
setuptools.setup(
2925
name="mosqito",
@@ -54,5 +50,10 @@
5450
python_requires=python_requires,
5551
install_requires=install_requires,
5652
tests_require=tests_require,
57-
extras_require={"testing": tests_require, "uff": uff_require, "SciDataTool": scidatatool_require, "all": all_require}
53+
extras_require={
54+
"testing": tests_require,
55+
"uff": uff_require,
56+
"SciDataTool": scidatatool_require,
57+
"all": all_require,
58+
},
5859
)

0 commit comments

Comments
 (0)