forecast2win 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.
- forecast2win-0.0.1/PKG-INFO +22 -0
- forecast2win-0.0.1/README.md +9 -0
- forecast2win-0.0.1/forecast2win/__init__.py +8 -0
- forecast2win-0.0.1/forecast2win.egg-info/PKG-INFO +22 -0
- forecast2win-0.0.1/forecast2win.egg-info/SOURCES.txt +7 -0
- forecast2win-0.0.1/forecast2win.egg-info/dependency_links.txt +1 -0
- forecast2win-0.0.1/forecast2win.egg-info/top_level.txt +1 -0
- forecast2win-0.0.1/pyproject.toml +21 -0
- forecast2win-0.0.1/setup.cfg +4 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: forecast2win
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for forecast2win (alignment-aware losses/metrics for time-series forecasting) — under development.
|
|
5
|
+
Author-email: Thanapol Phungtua-eng <thanapol.phu@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: time-series,forecasting,placeholder
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# forecast2win
|
|
15
|
+
|
|
16
|
+
Name reservation placeholder. The real package — alignment-aware **losses**, **metrics**,
|
|
17
|
+
and **diagnostics** for time-series forecasting — is under active development.
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
import forecast2win
|
|
21
|
+
forecast2win.hello() # 'hello world'
|
|
22
|
+
```
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# forecast2win
|
|
2
|
+
|
|
3
|
+
Name reservation placeholder. The real package — alignment-aware **losses**, **metrics**,
|
|
4
|
+
and **diagnostics** for time-series forecasting — is under active development.
|
|
5
|
+
|
|
6
|
+
```python
|
|
7
|
+
import forecast2win
|
|
8
|
+
forecast2win.hello() # 'hello world'
|
|
9
|
+
```
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: forecast2win
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for forecast2win (alignment-aware losses/metrics for time-series forecasting) — under development.
|
|
5
|
+
Author-email: Thanapol Phungtua-eng <thanapol.phu@gmail.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Keywords: time-series,forecasting,placeholder
|
|
8
|
+
Classifier: Development Status :: 1 - Planning
|
|
9
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# forecast2win
|
|
15
|
+
|
|
16
|
+
Name reservation placeholder. The real package — alignment-aware **losses**, **metrics**,
|
|
17
|
+
and **diagnostics** for time-series forecasting — is under active development.
|
|
18
|
+
|
|
19
|
+
```python
|
|
20
|
+
import forecast2win
|
|
21
|
+
forecast2win.hello() # 'hello world'
|
|
22
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
forecast2win
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "forecast2win"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "Placeholder for forecast2win (alignment-aware losses/metrics for time-series forecasting) — under development."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Thanapol Phungtua-eng", email = "thanapol.phu@gmail.com" }]
|
|
13
|
+
keywords = ["time-series", "forecasting", "placeholder"]
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Development Status :: 1 - Planning",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
"Programming Language :: Python :: 3",
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
[tool.setuptools.packages.find]
|
|
21
|
+
include = ["forecast2win*"]
|