prophet-sucks 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.
- prophet_sucks-1.0.0/LICENSE +21 -0
- prophet_sucks-1.0.0/PKG-INFO +64 -0
- prophet_sucks-1.0.0/README.md +36 -0
- prophet_sucks-1.0.0/prophet_sucks/__init__.py +28 -0
- prophet_sucks-1.0.0/prophet_sucks.egg-info/PKG-INFO +64 -0
- prophet_sucks-1.0.0/prophet_sucks.egg-info/SOURCES.txt +9 -0
- prophet_sucks-1.0.0/prophet_sucks.egg-info/dependency_links.txt +1 -0
- prophet_sucks-1.0.0/prophet_sucks.egg-info/requires.txt +1 -0
- prophet_sucks-1.0.0/prophet_sucks.egg-info/top_level.txt +1 -0
- prophet_sucks-1.0.0/setup.cfg +4 -0
- prophet_sucks-1.0.0/setup.py +28 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Peter Cotton
|
|
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.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: prophet-sucks
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A joke package that re-exports `laplace` from skaters. Use skaters instead.
|
|
5
|
+
Home-page: https://github.com/microprediction/skaters
|
|
6
|
+
Author: microprediction
|
|
7
|
+
Author-email: peter.cotton@microprediction.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Classifier: Development Status :: 7 - Inactive
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Requires-Dist: skaters>=0.10.0
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description
|
|
21
|
+
Dynamic: description-content-type
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: license
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
Dynamic: requires-dist
|
|
26
|
+
Dynamic: requires-python
|
|
27
|
+
Dynamic: summary
|
|
28
|
+
|
|
29
|
+
# prophet-sucks
|
|
30
|
+
|
|
31
|
+
A public service announcement, lovingly delivered as a Python package.
|
|
32
|
+
|
|
33
|
+
The punchline is also the useful part: instead of reaching for a heavyweight forecaster, use **[`skaters`](https://github.com/microprediction/skaters)** — a fast, light univariate forecasting package that even runs in Pyodide.
|
|
34
|
+
|
|
35
|
+

|
|
36
|
+
|
|
37
|
+
## Install the real thing
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install skaters
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
```python
|
|
44
|
+
from skaters import laplace
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## ...or keep laughing
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
pip install prophet-sucks
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
from prophet_sucks import laplace # re-exported straight from skaters, with a wink
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
`prophet_sucks` is a thin shim: it re-exports `laplace` from `skaters` and emits a `DeprecationWarning` pointing you to the real package. That's the whole joke.
|
|
58
|
+
|
|
59
|
+
## Links
|
|
60
|
+
|
|
61
|
+
- skaters: https://github.com/microprediction/skaters
|
|
62
|
+
- Docs: https://skaters.microprediction.org/
|
|
63
|
+
|
|
64
|
+
MIT licensed.
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
# prophet-sucks
|
|
2
|
+
|
|
3
|
+
A public service announcement, lovingly delivered as a Python package.
|
|
4
|
+
|
|
5
|
+
The punchline is also the useful part: instead of reaching for a heavyweight forecaster, use **[`skaters`](https://github.com/microprediction/skaters)** — a fast, light univariate forecasting package that even runs in Pyodide.
|
|
6
|
+
|
|
7
|
+

|
|
8
|
+
|
|
9
|
+
## Install the real thing
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install skaters
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
```python
|
|
16
|
+
from skaters import laplace
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## ...or keep laughing
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install prophet-sucks
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
```python
|
|
26
|
+
from prophet_sucks import laplace # re-exported straight from skaters, with a wink
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
`prophet_sucks` is a thin shim: it re-exports `laplace` from `skaters` and emits a `DeprecationWarning` pointing you to the real package. That's the whole joke.
|
|
30
|
+
|
|
31
|
+
## Links
|
|
32
|
+
|
|
33
|
+
- skaters: https://github.com/microprediction/skaters
|
|
34
|
+
- Docs: https://skaters.microprediction.org/
|
|
35
|
+
|
|
36
|
+
MIT licensed.
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"""
|
|
2
|
+
prophet-sucks is a public service announcement, lovingly delivered as a Python package.
|
|
3
|
+
|
|
4
|
+
The punchline is also the useful part: stop reaching for heavyweight forecasters and
|
|
5
|
+
use `skaters` (https://github.com/microprediction/skaters) instead — a fast, light
|
|
6
|
+
univariate forecasting package that even runs in Pyodide.
|
|
7
|
+
|
|
8
|
+
This package is a thin shim. It re-exports `laplace` from `skaters` so that
|
|
9
|
+
`from prophet_sucks import laplace` works, and emits a DeprecationWarning nudging
|
|
10
|
+
you toward the real thing:
|
|
11
|
+
|
|
12
|
+
pip install skaters
|
|
13
|
+
from skaters import laplace
|
|
14
|
+
"""
|
|
15
|
+
import warnings
|
|
16
|
+
|
|
17
|
+
warnings.warn(
|
|
18
|
+
"prophet-sucks is a joke package. The serious recommendation is `skaters` "
|
|
19
|
+
"(pip install skaters; https://github.com/microprediction/skaters). "
|
|
20
|
+
"prophet_sucks only re-exports `laplace` from skaters. "
|
|
21
|
+
"Please import `from skaters import laplace` instead.",
|
|
22
|
+
DeprecationWarning,
|
|
23
|
+
stacklevel=2,
|
|
24
|
+
)
|
|
25
|
+
|
|
26
|
+
from skaters import laplace
|
|
27
|
+
|
|
28
|
+
__all__ = ["laplace"]
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: prophet-sucks
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A joke package that re-exports `laplace` from skaters. Use skaters instead.
|
|
5
|
+
Home-page: https://github.com/microprediction/skaters
|
|
6
|
+
Author: microprediction
|
|
7
|
+
Author-email: peter.cotton@microprediction.com
|
|
8
|
+
License: MIT
|
|
9
|
+
Classifier: Development Status :: 7 - Inactive
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: Topic :: Scientific/Engineering
|
|
13
|
+
Requires-Python: >=3.10
|
|
14
|
+
Description-Content-Type: text/markdown
|
|
15
|
+
License-File: LICENSE
|
|
16
|
+
Requires-Dist: skaters>=0.10.0
|
|
17
|
+
Dynamic: author
|
|
18
|
+
Dynamic: author-email
|
|
19
|
+
Dynamic: classifier
|
|
20
|
+
Dynamic: description
|
|
21
|
+
Dynamic: description-content-type
|
|
22
|
+
Dynamic: home-page
|
|
23
|
+
Dynamic: license
|
|
24
|
+
Dynamic: license-file
|
|
25
|
+
Dynamic: requires-dist
|
|
26
|
+
Dynamic: requires-python
|
|
27
|
+
Dynamic: summary
|
|
28
|
+
|
|
29
|
+
# prophet-sucks
|
|
30
|
+
|
|
31
|
+
A public service announcement, lovingly delivered as a Python package.
|
|
32
|
+
|
|
33
|
+
The punchline is also the useful part: instead of reaching for a heavyweight forecaster, use **[`skaters`](https://github.com/microprediction/skaters)** — a fast, light univariate forecasting package that even runs in Pyodide.
|
|
34
|
+
|
|
35
|
+

|
|
36
|
+
|
|
37
|
+
## Install the real thing
|
|
38
|
+
|
|
39
|
+
```bash
|
|
40
|
+
pip install skaters
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
```python
|
|
44
|
+
from skaters import laplace
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
## ...or keep laughing
|
|
48
|
+
|
|
49
|
+
```bash
|
|
50
|
+
pip install prophet-sucks
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
```python
|
|
54
|
+
from prophet_sucks import laplace # re-exported straight from skaters, with a wink
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
`prophet_sucks` is a thin shim: it re-exports `laplace` from `skaters` and emits a `DeprecationWarning` pointing you to the real package. That's the whole joke.
|
|
58
|
+
|
|
59
|
+
## Links
|
|
60
|
+
|
|
61
|
+
- skaters: https://github.com/microprediction/skaters
|
|
62
|
+
- Docs: https://skaters.microprediction.org/
|
|
63
|
+
|
|
64
|
+
MIT licensed.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
skaters>=0.10.0
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
prophet_sucks
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import pathlib
|
|
2
|
+
from setuptools import setup
|
|
3
|
+
|
|
4
|
+
HERE = pathlib.Path(__file__).parent
|
|
5
|
+
|
|
6
|
+
README = (HERE / "README.md").read_text()
|
|
7
|
+
|
|
8
|
+
setup(
|
|
9
|
+
name="prophet-sucks",
|
|
10
|
+
version="1.0.0",
|
|
11
|
+
description="A joke package that re-exports `laplace` from skaters. Use skaters instead.",
|
|
12
|
+
long_description=README,
|
|
13
|
+
long_description_content_type="text/markdown",
|
|
14
|
+
url="https://github.com/microprediction/skaters",
|
|
15
|
+
author="microprediction",
|
|
16
|
+
author_email="peter.cotton@microprediction.com",
|
|
17
|
+
license="MIT",
|
|
18
|
+
classifiers=[
|
|
19
|
+
"Development Status :: 7 - Inactive",
|
|
20
|
+
"License :: OSI Approved :: MIT License",
|
|
21
|
+
"Programming Language :: Python :: 3",
|
|
22
|
+
"Topic :: Scientific/Engineering",
|
|
23
|
+
],
|
|
24
|
+
packages=["prophet_sucks"],
|
|
25
|
+
python_requires=">=3.10",
|
|
26
|
+
include_package_data=True,
|
|
27
|
+
install_requires=["skaters>=0.10.0"],
|
|
28
|
+
)
|