modusa 0.3__tar.gz → 0.3.1__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (91) hide show
  1. {modusa-0.3 → modusa-0.3.1}/PKG-INFO +21 -5
  2. {modusa-0.3 → modusa-0.3.1}/README.md +19 -2
  3. {modusa-0.3 → modusa-0.3.1}/pyproject.toml +2 -3
  4. {modusa-0.3 → modusa-0.3.1}/LICENSE.md +0 -0
  5. {modusa-0.3 → modusa-0.3.1}/src/modusa/.DS_Store +0 -0
  6. {modusa-0.3 → modusa-0.3.1}/src/modusa/__init__.py +0 -0
  7. {modusa-0.3 → modusa-0.3.1}/src/modusa/config.py +0 -0
  8. {modusa-0.3 → modusa-0.3.1}/src/modusa/decorators.py +0 -0
  9. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/generate_docs_source.py +0 -0
  10. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/generate_template.py +0 -0
  11. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/list_authors.py +0 -0
  12. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/list_plugins.py +0 -0
  13. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/main.py +0 -0
  14. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/templates/generator.py +0 -0
  15. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/templates/io.py +0 -0
  16. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/templates/model.py +0 -0
  17. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/templates/plugin.py +0 -0
  18. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/templates/test.py +0 -0
  19. {modusa-0.3 → modusa-0.3.1}/src/modusa/devtools/templates/tool.py +0 -0
  20. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/__init__.py +0 -0
  21. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/audio.py +0 -0
  22. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/audio_waveforms.py +0 -0
  23. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/base.py +0 -0
  24. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/ftds.py +0 -0
  25. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/s1d.py +0 -0
  26. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/s2d.py +0 -0
  27. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/s_ax.py +0 -0
  28. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/t_ax.py +0 -0
  29. {modusa-0.3 → modusa-0.3.1}/src/modusa/generators/tds.py +0 -0
  30. {modusa-0.3 → modusa-0.3.1}/src/modusa/main.py +0 -0
  31. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/__init__.py +0 -0
  32. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/__pycache__/signal1D.cpython-312.pyc.4443461152 +0 -0
  33. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/audio.py +0 -0
  34. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/base.py +0 -0
  35. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/data.py +0 -0
  36. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/ftds.py +0 -0
  37. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/s1d.py +0 -0
  38. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/s2d.py +0 -0
  39. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/s_ax.py +0 -0
  40. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/t_ax.py +0 -0
  41. {modusa-0.3 → modusa-0.3.1}/src/modusa/models/tds.py +0 -0
  42. {modusa-0.3 → modusa-0.3.1}/src/modusa/plugins/__init__.py +0 -0
  43. {modusa-0.3 → modusa-0.3.1}/src/modusa/plugins/base.py +0 -0
  44. {modusa-0.3 → modusa-0.3.1}/src/modusa/tmp.py +0 -0
  45. {modusa-0.3 → modusa-0.3.1}/src/modusa/tools/__init__.py +0 -0
  46. {modusa-0.3 → modusa-0.3.1}/src/modusa/tools/audio_converter.py +0 -0
  47. {modusa-0.3 → modusa-0.3.1}/src/modusa/tools/audio_loader.py +0 -0
  48. {modusa-0.3 → modusa-0.3.1}/src/modusa/tools/audio_player.py +0 -0
  49. {modusa-0.3 → modusa-0.3.1}/src/modusa/tools/base.py +0 -0
  50. {modusa-0.3 → modusa-0.3.1}/src/modusa/tools/math_ops.py +0 -0
  51. {modusa-0.3 → modusa-0.3.1}/src/modusa/tools/plotter.py +0 -0
  52. {modusa-0.3 → modusa-0.3.1}/src/modusa/tools/youtube_downloader.py +0 -0
  53. {modusa-0.3 → modusa-0.3.1}/src/modusa/utils/.DS_Store +0 -0
  54. {modusa-0.3 → modusa-0.3.1}/src/modusa/utils/__init__.py +0 -0
  55. {modusa-0.3 → modusa-0.3.1}/src/modusa/utils/config.py +0 -0
  56. {modusa-0.3 → modusa-0.3.1}/src/modusa/utils/excp.py +0 -0
  57. {modusa-0.3 → modusa-0.3.1}/src/modusa/utils/logger.py +0 -0
  58. {modusa-0.3 → modusa-0.3.1}/src/modusa/utils/np_func_cat.py +0 -0
  59. {modusa-0.3 → modusa-0.3.1}/src/modusa/utils/plot.py +0 -0
  60. {modusa-0.3 → modusa-0.3.1}/tests/__init__.py +0 -0
  61. {modusa-0.3 → modusa-0.3.1}/tests/data/song1.mp3 +0 -0
  62. {modusa-0.3 → modusa-0.3.1}/tests/data/song1.wav +0 -0
  63. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/audio_waveform.py +0 -0
  64. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/test_audio.py +0 -0
  65. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/test_ftds.py +0 -0
  66. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/test_s1d.py +0 -0
  67. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/test_s2d.py +0 -0
  68. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/test_s_ax.py +0 -0
  69. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/test_signal.py +0 -0
  70. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/test_signal_generator.py +0 -0
  71. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/test_t_ax.py +0 -0
  72. {modusa-0.3 → modusa-0.3.1}/tests/test_generators/test_tds.py +0 -0
  73. {modusa-0.3 → modusa-0.3.1}/tests/test_io/audio_player.py +0 -0
  74. {modusa-0.3 → modusa-0.3.1}/tests/test_io/plotter.py +0 -0
  75. {modusa-0.3 → modusa-0.3.1}/tests/test_models/test_data.py +0 -0
  76. {modusa-0.3 → modusa-0.3.1}/tests/test_models/test_t_ax.py +0 -0
  77. {modusa-0.3 → modusa-0.3.1}/tests/test_plugins/youtube_audio_loader.py +0 -0
  78. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/frequency_domain_signal.py +0 -0
  79. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/spectrogram.py +0 -0
  80. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/test_axis.py +0 -0
  81. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/test_feature_time_domain_signal.py +0 -0
  82. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/test_frequency_time_domain_signal.py +0 -0
  83. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/test_signal1D.py +0 -0
  84. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/test_signal2D.py +0 -0
  85. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/test_time_domain_signal.py +0 -0
  86. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/test_u_ax.py +0 -0
  87. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/test_window_signal.py +0 -0
  88. {modusa-0.3 → modusa-0.3.1}/tests/test_signals/time_domain_signal.py +0 -0
  89. {modusa-0.3 → modusa-0.3.1}/tests/test_tools/test_audio_converter.py +0 -0
  90. {modusa-0.3 → modusa-0.3.1}/tests/test_tools/test_fourier_tranform.py +0 -0
  91. {modusa-0.3 → modusa-0.3.1}/tests/test_tools/test_math_ops.py +0 -0
@@ -1,16 +1,15 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: modusa
3
- Version: 0.3
3
+ Version: 0.3.1
4
4
  Summary: A modular signal analysis python library.
5
5
  Author-Email: Ankit Anand <ankit0.anand0@gmail.com>
6
6
  License: MIT
7
- Requires-Python: >=3.12
7
+ Requires-Python: >=3.10
8
8
  Requires-Dist: numpy>=2.2.6
9
9
  Requires-Dist: matplotlib>=3.10.3
10
10
  Requires-Dist: yt-dlp>=2025.6.30
11
11
  Requires-Dist: librosa==0.11.0
12
12
  Requires-Dist: IPython>=8.0.0
13
- Requires-Dist: pyloudnorm>=0.1.1
14
13
  Description-Content-Type: text/markdown
15
14
 
16
15
  # modusa
@@ -23,7 +22,7 @@ Description-Content-Type: text/markdown
23
22
 
24
23
  > modusa is under active development. You can install the latest version via:
25
24
 
26
- ```bash
25
+ ```
27
26
  pip install modusa
28
27
  ```
29
28
 
@@ -31,7 +30,7 @@ pip install modusa
31
30
 
32
31
  ## Tests
33
32
 
34
- ```bash
33
+ ```
35
34
  pytest tests/
36
35
  ```
37
36
 
@@ -44,6 +43,23 @@ If you like the direction, consider ⭐ starring the repo and opening issues or
44
43
 
45
44
  ---
46
45
 
46
+ ## Few useful command
47
+
48
+ To push doc changes
49
+ ```
50
+ ghp-import -n -p -f docs/build/html
51
+ ```
52
+
53
+ To create a dist
54
+ ```
55
+ pdm build
56
+ ```
57
+
58
+ To upload on pypi
59
+ ```
60
+ twine upload dist/*
61
+ ```
62
+
47
63
  ## About
48
64
 
49
65
  **modusa** is developed and maintained by [meluron](https://www.github.com/meluron),
@@ -8,7 +8,7 @@
8
8
 
9
9
  > modusa is under active development. You can install the latest version via:
10
10
 
11
- ```bash
11
+ ```
12
12
  pip install modusa
13
13
  ```
14
14
 
@@ -16,7 +16,7 @@ pip install modusa
16
16
 
17
17
  ## Tests
18
18
 
19
- ```bash
19
+ ```
20
20
  pytest tests/
21
21
  ```
22
22
 
@@ -29,6 +29,23 @@ If you like the direction, consider ⭐ starring the repo and opening issues or
29
29
 
30
30
  ---
31
31
 
32
+ ## Few useful command
33
+
34
+ To push doc changes
35
+ ```
36
+ ghp-import -n -p -f docs/build/html
37
+ ```
38
+
39
+ To create a dist
40
+ ```
41
+ pdm build
42
+ ```
43
+
44
+ To upload on pypi
45
+ ```
46
+ twine upload dist/*
47
+ ```
48
+
32
49
  ## About
33
50
 
34
51
  **modusa** is developed and maintained by [meluron](https://www.github.com/meluron),
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "modusa"
3
- version = "0.3"
3
+ version = "0.3.1"
4
4
  description = "A modular signal analysis python library."
5
5
  authors = [
6
6
  { name = "Ankit Anand", email = "ankit0.anand0@gmail.com" },
@@ -11,9 +11,8 @@ dependencies = [
11
11
  "yt-dlp>=2025.6.30",
12
12
  "librosa==0.11.0",
13
13
  "IPython>=8.0.0",
14
- "pyloudnorm>=0.1.1",
15
14
  ]
16
- requires-python = ">=3.12"
15
+ requires-python = ">=3.10"
17
16
  readme = "README.md"
18
17
 
19
18
  [project.license]
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes