Skip to content

Commit aaf0591

Browse files
committed
update docs and meta.yaml
1 parent 82e07f0 commit aaf0591

File tree

3 files changed

+24
-17
lines changed

3 files changed

+24
-17
lines changed

docs/source/index.rst

+11-1
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,20 @@ For the documentation of the modules please refer to:
5050
Citation
5151
--------
5252

53-
- If you want to cite spafe as a software used in your work, please
53+
- If you want to cite spafe as a software, please
5454
cite the version used as indexed at `Zenodo <https://zenodo.org/>`__: |DOI|
5555

56+
* *Ayoub Malek. (2023). SuperKogito/spafe: Spafe: Simplified python audio features extraction (v0.3.2). Zenodo.* https://doi.org/10.5281/zenodo.7533946
57+
|
58+
- You can also site spafe's paper on `JOSS <https://https://joss.theoj.org/>`__: |DOI2|
59+
60+
* *Malek, A., (2023). Spafe: Simplified python audio features extraction. Journal of Open Source Software, 8(81), 4739,* https://doi.org/10.21105/joss.04739
61+
62+
5663

5764

5865
.. |DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.6824667.svg
5966
:target: https://doi.org/10.5281/zenodo.6824667
67+
68+
.. |DOI2| image:: https://joss.theoj.org/papers/10.21105/joss.04739/status.svg
69+
:target: https://doi.org/10.21105/joss.04739

meta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
package:
22
name: "spafe"
3-
version: "0.3.1"
3+
version: "0.3.2"
44

55
source:
6-
git_rev: v0.3.1
6+
git_rev: v0.3.2
77
git_url: https://github.com/SuperKogito/spafe
88

99
requirements:

setup.py

+11-14
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
1-
from pathlib import Path
2-
1+
import setuptools
32
from setuptools import setup, find_packages
4-
3+
from pathlib import Path
54
from spafe import version
65

76
here = Path(__file__).parent
@@ -37,13 +36,13 @@
3736
"License :: OSI Approved :: BSD License",
3837
"Operating System :: OS Independent",
3938
"Programming Language :: Python",
40-
'Topic :: Multimedia :: Sound/Audio :: Analysis',
41-
'Topic :: Multimedia :: Sound/Audio :: Editors',
42-
'Topic :: Multimedia :: Sound/Audio :: Speech',
43-
'Topic :: Scientific/Engineering :: Information Analysis',
39+
"Topic :: Multimedia :: Sound/Audio :: Analysis",
40+
"Topic :: Multimedia :: Sound/Audio :: Editors",
41+
"Topic :: Multimedia :: Sound/Audio :: Speech",
42+
"Topic :: Scientific/Engineering :: Information Analysis",
4443
"Topic :: Scientific/Engineering :: Artificial Intelligence",
4544
],
46-
platforms='any',
45+
platforms="any",
4746
extras_require={
4847
"tests": [
4948
"pytest>=6.2.4",
@@ -53,16 +52,14 @@
5352
"pytest-xdist",
5453
"codacy-coverage",
5554
"matplotlib",
56-
"mock==4.0.3"
55+
"mock==4.0.3",
5756
],
5857
"docs": [
5958
"sphinxcontrib-napoleon==0.7",
6059
"nbsphinx==0.8.9",
6160
"pydata-sphinx-theme==0.8.1",
62-
"matplotlib"
61+
"matplotlib",
6362
],
64-
"plotting": {
65-
"maplotlib"
66-
}
67-
}
63+
"plotting": {"maplotlib"},
64+
},
6865
)

0 commit comments

Comments
 (0)