serie 0.0.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.
serie-0.0.1/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Qilin Wang
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
serie-0.0.1/PKG-INFO ADDED
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: serie
3
+ Version: 0.0.1
4
+ Summary: Stress-test time-series forecasters: known dynamical systems, controlled shocks, calibrated noise titration (the AURA protocol). Placeholder release; 0.1.0 in preparation.
5
+ Author: Qilin Wang
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/QilinWang
8
+ Project-URL: Repository, https://github.com/QilinWang
9
+ Keywords: time-series,forecasting,benchmarking,dynamical-systems,robustness,chaos
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Topic :: Scientific/Engineering
15
+ Requires-Python: >=3.12
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Dynamic: license-file
19
+
20
+ # serie
21
+
22
+ **Stress-test your forecaster before reality does.**
23
+
24
+ `serie` will implement the **AURA protocol** (Artificial Uncertainty and
25
+ Regime Alteration): take a clean reference series — a simulated dynamical
26
+ system with exact ground truth, or a clean recording treated as the
27
+ system — apply controlled non-stationary shocks, and inject calibrated
28
+ Gaussian observation noise at chosen levels. Measure exactly *when and how*
29
+ a forecaster breaks, instead of ranking models on one recorded history.
30
+
31
+ ```python
32
+ import serie
33
+
34
+ stock = serie.prepare("lorenz", seed=42)
35
+ for sigma in (0.0, 0.25, 1.0, 2.0):
36
+ split = serie.titrate(stock, sigma=sigma)
37
+ ...
38
+ ```
39
+
40
+ **This is a 0.0.1 name reservation — the API above ships in 0.1.0.**
41
+ Watch [github.com/QilinWang](https://github.com/QilinWang) for the release.
42
+
43
+ MIT license. Author: Qilin Wang.
serie-0.0.1/README.md ADDED
@@ -0,0 +1,24 @@
1
+ # serie
2
+
3
+ **Stress-test your forecaster before reality does.**
4
+
5
+ `serie` will implement the **AURA protocol** (Artificial Uncertainty and
6
+ Regime Alteration): take a clean reference series — a simulated dynamical
7
+ system with exact ground truth, or a clean recording treated as the
8
+ system — apply controlled non-stationary shocks, and inject calibrated
9
+ Gaussian observation noise at chosen levels. Measure exactly *when and how*
10
+ a forecaster breaks, instead of ranking models on one recorded history.
11
+
12
+ ```python
13
+ import serie
14
+
15
+ stock = serie.prepare("lorenz", seed=42)
16
+ for sigma in (0.0, 0.25, 1.0, 2.0):
17
+ split = serie.titrate(stock, sigma=sigma)
18
+ ...
19
+ ```
20
+
21
+ **This is a 0.0.1 name reservation — the API above ships in 0.1.0.**
22
+ Watch [github.com/QilinWang](https://github.com/QilinWang) for the release.
23
+
24
+ MIT license. Author: Qilin Wang.
@@ -0,0 +1,29 @@
1
+ [project]
2
+ name = "serie"
3
+ version = "0.0.1"
4
+ description = "Stress-test time-series forecasters: known dynamical systems, controlled shocks, calibrated noise titration (the AURA protocol). Placeholder release; 0.1.0 in preparation."
5
+ readme = "README.md"
6
+ requires-python = ">=3.12"
7
+ license = "MIT"
8
+ authors = [{ name = "Qilin Wang" }]
9
+ keywords = ["time-series", "forecasting", "benchmarking", "dynamical-systems", "robustness", "chaos"]
10
+ classifiers = [
11
+ "Development Status :: 1 - Planning",
12
+ "Intended Audience :: Science/Research",
13
+ "Programming Language :: Python :: 3.12",
14
+ "Programming Language :: Python :: 3.13",
15
+ "Topic :: Scientific/Engineering",
16
+ ]
17
+ dependencies = []
18
+
19
+ [project.urls]
20
+ Homepage = "https://github.com/QilinWang"
21
+ Repository = "https://github.com/QilinWang"
22
+
23
+ [build-system]
24
+ requires = ["setuptools>=69", "wheel"]
25
+ build-backend = "setuptools.build_meta"
26
+
27
+ [tool.setuptools]
28
+ package-dir = { "" = "src" }
29
+ packages = ["serie"]
serie-0.0.1/setup.cfg ADDED
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,11 @@
1
+ """serie — stress-test time-series forecasters with controlled experiments.
2
+
3
+ This is a 0.0.1 name reservation. The 0.1.0 release implements the AURA
4
+ protocol (Artificial Uncertainty and Regime Alteration): clean reference
5
+ series from known dynamical systems or user recordings, controlled
6
+ non-stationary shocks, and calibrated Gaussian noise titration.
7
+
8
+ Watch https://github.com/QilinWang for the release.
9
+ """
10
+
11
+ __version__ = "0.0.1"
@@ -0,0 +1,43 @@
1
+ Metadata-Version: 2.4
2
+ Name: serie
3
+ Version: 0.0.1
4
+ Summary: Stress-test time-series forecasters: known dynamical systems, controlled shocks, calibrated noise titration (the AURA protocol). Placeholder release; 0.1.0 in preparation.
5
+ Author: Qilin Wang
6
+ License-Expression: MIT
7
+ Project-URL: Homepage, https://github.com/QilinWang
8
+ Project-URL: Repository, https://github.com/QilinWang
9
+ Keywords: time-series,forecasting,benchmarking,dynamical-systems,robustness,chaos
10
+ Classifier: Development Status :: 1 - Planning
11
+ Classifier: Intended Audience :: Science/Research
12
+ Classifier: Programming Language :: Python :: 3.12
13
+ Classifier: Programming Language :: Python :: 3.13
14
+ Classifier: Topic :: Scientific/Engineering
15
+ Requires-Python: >=3.12
16
+ Description-Content-Type: text/markdown
17
+ License-File: LICENSE
18
+ Dynamic: license-file
19
+
20
+ # serie
21
+
22
+ **Stress-test your forecaster before reality does.**
23
+
24
+ `serie` will implement the **AURA protocol** (Artificial Uncertainty and
25
+ Regime Alteration): take a clean reference series — a simulated dynamical
26
+ system with exact ground truth, or a clean recording treated as the
27
+ system — apply controlled non-stationary shocks, and inject calibrated
28
+ Gaussian observation noise at chosen levels. Measure exactly *when and how*
29
+ a forecaster breaks, instead of ranking models on one recorded history.
30
+
31
+ ```python
32
+ import serie
33
+
34
+ stock = serie.prepare("lorenz", seed=42)
35
+ for sigma in (0.0, 0.25, 1.0, 2.0):
36
+ split = serie.titrate(stock, sigma=sigma)
37
+ ...
38
+ ```
39
+
40
+ **This is a 0.0.1 name reservation — the API above ships in 0.1.0.**
41
+ Watch [github.com/QilinWang](https://github.com/QilinWang) for the release.
42
+
43
+ MIT license. Author: Qilin Wang.
@@ -0,0 +1,8 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/serie/__init__.py
5
+ src/serie.egg-info/PKG-INFO
6
+ src/serie.egg-info/SOURCES.txt
7
+ src/serie.egg-info/dependency_links.txt
8
+ src/serie.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ serie