Skip to content

Commit

Permalink
update docs and meta.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperKogito committed Feb 28, 2023
1 parent 82e07f0 commit aaf0591
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 17 deletions.
12 changes: 11 additions & 1 deletion docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,20 @@ For the documentation of the modules please refer to:
Citation
--------

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

* *Ayoub Malek. (2023). SuperKogito/spafe: Spafe: Simplified python audio features extraction (v0.3.2). Zenodo.* https://doi.org/10.5281/zenodo.7533946
|
- You can also site spafe's paper on `JOSS <https://https://joss.theoj.org/>`__: |DOI2|

* *Malek, A., (2023). Spafe: Simplified python audio features extraction. Journal of Open Source Software, 8(81), 4739,* https://doi.org/10.21105/joss.04739




.. |DOI| image:: https://zenodo.org/badge/DOI/10.5281/zenodo.6824667.svg
:target: https://doi.org/10.5281/zenodo.6824667

.. |DOI2| image:: https://joss.theoj.org/papers/10.21105/joss.04739/status.svg
:target: https://doi.org/10.21105/joss.04739
4 changes: 2 additions & 2 deletions meta.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package:
name: "spafe"
version: "0.3.1"
version: "0.3.2"

source:
git_rev: v0.3.1
git_rev: v0.3.2
git_url: https://github.com/SuperKogito/spafe

requirements:
Expand Down
25 changes: 11 additions & 14 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
from pathlib import Path

import setuptools
from setuptools import setup, find_packages

from pathlib import Path
from spafe import version

here = Path(__file__).parent
Expand Down Expand Up @@ -37,13 +36,13 @@
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
'Topic :: Multimedia :: Sound/Audio :: Analysis',
'Topic :: Multimedia :: Sound/Audio :: Editors',
'Topic :: Multimedia :: Sound/Audio :: Speech',
'Topic :: Scientific/Engineering :: Information Analysis',
"Topic :: Multimedia :: Sound/Audio :: Analysis",
"Topic :: Multimedia :: Sound/Audio :: Editors",
"Topic :: Multimedia :: Sound/Audio :: Speech",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
platforms='any',
platforms="any",
extras_require={
"tests": [
"pytest>=6.2.4",
Expand All @@ -53,16 +52,14 @@
"pytest-xdist",
"codacy-coverage",
"matplotlib",
"mock==4.0.3"
"mock==4.0.3",
],
"docs": [
"sphinxcontrib-napoleon==0.7",
"nbsphinx==0.8.9",
"pydata-sphinx-theme==0.8.1",
"matplotlib"
"matplotlib",
],
"plotting": {
"maplotlib"
}
}
"plotting": {"maplotlib"},
},
)

0 comments on commit aaf0591

Please sign in to comment.