atsw 1.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.
- atsw-1.0.0/PKG-INFO +52 -0
- atsw-1.0.0/README.md +35 -0
- atsw-1.0.0/atsw.egg-info/PKG-INFO +52 -0
- atsw-1.0.0/atsw.egg-info/SOURCES.txt +7 -0
- atsw-1.0.0/atsw.egg-info/dependency_links.txt +1 -0
- atsw-1.0.0/atsw.egg-info/requires.txt +3 -0
- atsw-1.0.0/atsw.egg-info/top_level.txt +1 -0
- atsw-1.0.0/pyproject.toml +33 -0
- atsw-1.0.0/setup.cfg +4 -0
atsw-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: atsw
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: ATSW — Box-Jenkins-Treadway time series suite (fue + pyfug + ART/MCP)
|
|
5
|
+
Author-email: "David E. Guerrero" <davidesg@ucm.es>
|
|
6
|
+
License: GPL-2.0-or-later
|
|
7
|
+
Keywords: time series,ARIMA,Box-Jenkins,Treadway,MCP,suite
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Intended Audience :: Science/Research
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: fue>=0.1.3
|
|
15
|
+
Requires-Dist: pyfug>=2.0
|
|
16
|
+
Requires-Dist: art-tseries>=0.1.0
|
|
17
|
+
|
|
18
|
+
# ATSW — Box-Jenkins-Treadway time series suite
|
|
19
|
+
|
|
20
|
+
`atsw` is an **umbrella package**: installing it pulls the complete Box-Jenkins-
|
|
21
|
+
Treadway time series suite plus the MCP server, in one step.
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install atsw
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
This installs:
|
|
28
|
+
|
|
29
|
+
| Component | Package | Role |
|
|
30
|
+
|-----------|---------|------|
|
|
31
|
+
| **FUE** (+ FUF) | `fue` | Exact ML estimation (ARMAX + transfer functions) and forecasting |
|
|
32
|
+
| **FUG** | `pyfug` | High-definition graphics for time series analysis |
|
|
33
|
+
| **ART** | `art-tseries` | Model building, diagnosis, formal tests + **MCP server** (`art-mcp`) |
|
|
34
|
+
|
|
35
|
+
## Use with an LLM (MCP)
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
claude mcp add art -- art-mcp
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Ask Claude to analyse a time series; it will offer a **guided** (analyst decides,
|
|
42
|
+
Claude advises) or **autonomous** (Claude decides) Box-Jenkins-Treadway workflow.
|
|
43
|
+
|
|
44
|
+
## Components on PyPI
|
|
45
|
+
|
|
46
|
+
Each component is also installable on its own — `atsw` just fixes a compatible
|
|
47
|
+
set. See each package's README and `art-tseries`'s `docs/ARCHITECTURE.md` for the
|
|
48
|
+
full design.
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
GPL-2.0-or-later. © David E. Guerrero.
|
atsw-1.0.0/README.md
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# ATSW — Box-Jenkins-Treadway time series suite
|
|
2
|
+
|
|
3
|
+
`atsw` is an **umbrella package**: installing it pulls the complete Box-Jenkins-
|
|
4
|
+
Treadway time series suite plus the MCP server, in one step.
|
|
5
|
+
|
|
6
|
+
```bash
|
|
7
|
+
pip install atsw
|
|
8
|
+
```
|
|
9
|
+
|
|
10
|
+
This installs:
|
|
11
|
+
|
|
12
|
+
| Component | Package | Role |
|
|
13
|
+
|-----------|---------|------|
|
|
14
|
+
| **FUE** (+ FUF) | `fue` | Exact ML estimation (ARMAX + transfer functions) and forecasting |
|
|
15
|
+
| **FUG** | `pyfug` | High-definition graphics for time series analysis |
|
|
16
|
+
| **ART** | `art-tseries` | Model building, diagnosis, formal tests + **MCP server** (`art-mcp`) |
|
|
17
|
+
|
|
18
|
+
## Use with an LLM (MCP)
|
|
19
|
+
|
|
20
|
+
```bash
|
|
21
|
+
claude mcp add art -- art-mcp
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Ask Claude to analyse a time series; it will offer a **guided** (analyst decides,
|
|
25
|
+
Claude advises) or **autonomous** (Claude decides) Box-Jenkins-Treadway workflow.
|
|
26
|
+
|
|
27
|
+
## Components on PyPI
|
|
28
|
+
|
|
29
|
+
Each component is also installable on its own — `atsw` just fixes a compatible
|
|
30
|
+
set. See each package's README and `art-tseries`'s `docs/ARCHITECTURE.md` for the
|
|
31
|
+
full design.
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
GPL-2.0-or-later. © David E. Guerrero.
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: atsw
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: ATSW — Box-Jenkins-Treadway time series suite (fue + pyfug + ART/MCP)
|
|
5
|
+
Author-email: "David E. Guerrero" <davidesg@ucm.es>
|
|
6
|
+
License: GPL-2.0-or-later
|
|
7
|
+
Keywords: time series,ARIMA,Box-Jenkins,Treadway,MCP,suite
|
|
8
|
+
Classifier: Development Status :: 4 - Beta
|
|
9
|
+
Classifier: Intended Audience :: Science/Research
|
|
10
|
+
Classifier: Topic :: Scientific/Engineering :: Mathematics
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Requires-Python: >=3.10
|
|
13
|
+
Description-Content-Type: text/markdown
|
|
14
|
+
Requires-Dist: fue>=0.1.3
|
|
15
|
+
Requires-Dist: pyfug>=2.0
|
|
16
|
+
Requires-Dist: art-tseries>=0.1.0
|
|
17
|
+
|
|
18
|
+
# ATSW — Box-Jenkins-Treadway time series suite
|
|
19
|
+
|
|
20
|
+
`atsw` is an **umbrella package**: installing it pulls the complete Box-Jenkins-
|
|
21
|
+
Treadway time series suite plus the MCP server, in one step.
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
pip install atsw
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
This installs:
|
|
28
|
+
|
|
29
|
+
| Component | Package | Role |
|
|
30
|
+
|-----------|---------|------|
|
|
31
|
+
| **FUE** (+ FUF) | `fue` | Exact ML estimation (ARMAX + transfer functions) and forecasting |
|
|
32
|
+
| **FUG** | `pyfug` | High-definition graphics for time series analysis |
|
|
33
|
+
| **ART** | `art-tseries` | Model building, diagnosis, formal tests + **MCP server** (`art-mcp`) |
|
|
34
|
+
|
|
35
|
+
## Use with an LLM (MCP)
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
claude mcp add art -- art-mcp
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
Ask Claude to analyse a time series; it will offer a **guided** (analyst decides,
|
|
42
|
+
Claude advises) or **autonomous** (Claude decides) Box-Jenkins-Treadway workflow.
|
|
43
|
+
|
|
44
|
+
## Components on PyPI
|
|
45
|
+
|
|
46
|
+
Each component is also installable on its own — `atsw` just fixes a compatible
|
|
47
|
+
set. See each package's README and `art-tseries`'s `docs/ARCHITECTURE.md` for the
|
|
48
|
+
full design.
|
|
49
|
+
|
|
50
|
+
## License
|
|
51
|
+
|
|
52
|
+
GPL-2.0-or-later. © David E. Guerrero.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=60", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "atsw"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "ATSW — Box-Jenkins-Treadway time series suite (fue + pyfug + ART/MCP)"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = { text = "GPL-2.0-or-later" }
|
|
11
|
+
requires-python = ">=3.10"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "David E. Guerrero", email = "davidesg@ucm.es" },
|
|
14
|
+
]
|
|
15
|
+
keywords = ["time series", "ARIMA", "Box-Jenkins", "Treadway", "MCP", "suite"]
|
|
16
|
+
classifiers = [
|
|
17
|
+
"Development Status :: 4 - Beta",
|
|
18
|
+
"Intended Audience :: Science/Research",
|
|
19
|
+
"Topic :: Scientific/Engineering :: Mathematics",
|
|
20
|
+
"Programming Language :: Python :: 3",
|
|
21
|
+
]
|
|
22
|
+
|
|
23
|
+
# Umbrella meta-package: no code of its own, just a compatible set of the suite
|
|
24
|
+
# components. `pip install atsw` installs the whole suite + the MCP server.
|
|
25
|
+
dependencies = [
|
|
26
|
+
"fue>=0.1.3", # estimation engine + FUF forecasting
|
|
27
|
+
"pyfug>=2.0", # Jenkins-Treadway graphics
|
|
28
|
+
"art-tseries>=0.1.0", # model building + MCP server (art-mcp)
|
|
29
|
+
]
|
|
30
|
+
|
|
31
|
+
[tool.setuptools]
|
|
32
|
+
# No packages — this distribution exists only to pull the suite together.
|
|
33
|
+
packages = []
|
atsw-1.0.0/setup.cfg
ADDED