specux 0.0.0__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.
specux-0.0.0/PKG-INFO ADDED
@@ -0,0 +1,20 @@
1
+ Metadata-Version: 2.4
2
+ Name: specux
3
+ Version: 0.0.0
4
+ Summary: Differentiable, GPU-accelerated audio/DSP feature extraction (placeholder — under development)
5
+ Project-URL: Homepage, https://specux.com
6
+ Author-email: Peter Kiers <peter@dreamteam.nl>
7
+ License-Expression: MIT
8
+ Keywords: audio,differentiable,dsp,gpu,mel,mfcc,spectrogram,stft
9
+ Classifier: Development Status :: 1 - Planning
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Topic :: Multimedia :: Sound/Audio :: Analysis
12
+ Requires-Python: >=3.10
13
+ Description-Content-Type: text/markdown
14
+
15
+ # specux
16
+
17
+ Differentiable, GPU-accelerated audio/DSP feature extraction.
18
+
19
+ > **Status:** placeholder release reserving the name. The real package is under
20
+ > active development — watch [specux.com](https://specux.com).
specux-0.0.0/README.md ADDED
@@ -0,0 +1,6 @@
1
+ # specux
2
+
3
+ Differentiable, GPU-accelerated audio/DSP feature extraction.
4
+
5
+ > **Status:** placeholder release reserving the name. The real package is under
6
+ > active development — watch [specux.com](https://specux.com).
@@ -0,0 +1,24 @@
1
+ [build-system]
2
+ requires = ["hatchling"]
3
+ build-backend = "hatchling.build"
4
+
5
+ [project]
6
+ name = "specux"
7
+ version = "0.0.0"
8
+ description = "Differentiable, GPU-accelerated audio/DSP feature extraction (placeholder — under development)"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [{ name = "Peter Kiers", email = "peter@dreamteam.nl" }]
13
+ keywords = ["audio", "dsp", "spectrogram", "stft", "mel", "mfcc", "gpu", "differentiable"]
14
+ classifiers = [
15
+ "Development Status :: 1 - Planning",
16
+ "Programming Language :: Python :: 3",
17
+ "Topic :: Multimedia :: Sound/Audio :: Analysis",
18
+ ]
19
+
20
+ [project.urls]
21
+ Homepage = "https://specux.com"
22
+
23
+ [tool.hatch.build.targets.wheel]
24
+ packages = ["src/specux"]
@@ -0,0 +1,6 @@
1
+ """specux — differentiable, GPU-accelerated audio/DSP feature extraction.
2
+
3
+ Placeholder release reserving the name on PyPI. Real API is under development.
4
+ """
5
+
6
+ __version__ = "0.0.0"