bezierv 0.1.1__py3-none-any.whl → 1.0.0__py3-none-any.whl

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.
@@ -0,0 +1,99 @@
1
+ Metadata-Version: 2.4
2
+ Name: bezierv
3
+ Version: 1.0.0
4
+ Summary: This package serves as a computational framework for Bézier distributions.
5
+ Author-email: Esteban Leiva <e.leivam@uniandes.edu.co>, "Andrés L. Medaglia" <amedagli@uniandes.edu.co>
6
+ Maintainer-email: Esteban Leiva <e.leivam@uniandes.edu.co>
7
+ License: MIT License
8
+
9
+ Copyright (c) 2025 Esteban Leiva and Andrés L. Medaglia
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in all
19
+ copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
27
+ SOFTWARE.
28
+
29
+ Project-URL: Homepage, https://github.com/you/your-package
30
+ Project-URL: Documentation, https://your-package.readthedocs.io/
31
+ Project-URL: Source, https://github.com/you/your-package
32
+ Keywords: bezier,distribution,optimization
33
+ Classifier: Programming Language :: Python :: 3 :: Only
34
+ Classifier: Programming Language :: Python :: 3.10
35
+ Classifier: Programming Language :: Python :: 3.11
36
+ Classifier: Programming Language :: Python :: 3.12
37
+ Classifier: Programming Language :: Python :: 3.13
38
+ Requires-Python: <3.14,>=3.10
39
+ Description-Content-Type: text/markdown
40
+ License-File: LICENSE
41
+ Requires-Dist: numpy<2,>=1.26; python_version == "3.10"
42
+ Requires-Dist: scipy<1.16,>=1.13; python_version == "3.10"
43
+ Requires-Dist: matplotlib<3.11,>=3.9; python_version == "3.10"
44
+ Requires-Dist: statsmodels<0.15,>=0.14.2; python_version == "3.10"
45
+ Requires-Dist: pyomo<7,>=6.8; python_version == "3.10"
46
+ Requires-Dist: numpy<2.3,>=1.26; python_version == "3.11"
47
+ Requires-Dist: scipy<1.17,>=1.13; python_version == "3.11"
48
+ Requires-Dist: matplotlib<3.11,>=3.9; python_version == "3.11"
49
+ Requires-Dist: statsmodels<0.15,>=0.14.2; python_version == "3.11"
50
+ Requires-Dist: pyomo<7,>=6.8; python_version == "3.11"
51
+ Requires-Dist: numpy<2.3,>=2.1; python_version == "3.12"
52
+ Requires-Dist: scipy<1.17,>=1.14.1; python_version == "3.12"
53
+ Requires-Dist: matplotlib<3.11,>=3.9; python_version == "3.12"
54
+ Requires-Dist: statsmodels<0.15,>=0.14.2; python_version == "3.12"
55
+ Requires-Dist: pyomo<7,>=6.8; python_version == "3.12"
56
+ Requires-Dist: numpy<2.4,>=2.2; python_version == "3.13"
57
+ Requires-Dist: scipy<1.17,>=1.14.1; python_version == "3.13"
58
+ Requires-Dist: matplotlib<3.11,>=3.9; python_version == "3.13"
59
+ Requires-Dist: statsmodels<0.15,>=0.14.2; python_version == "3.13"
60
+ Requires-Dist: pyomo<7,>=6.8; python_version == "3.13"
61
+ Dynamic: license-file
62
+
63
+ <p align="center">
64
+ <!-- If you used a different path, update the src accordingly -->
65
+ <img src="docs/assets/logo.png" alt="bezierv logo" width="260"/>
66
+ </p>
67
+
68
+ <h1 align="center">bezierv</h1>
69
+ <p align="center">
70
+ <em>Fit smooth Bézier random variables to empirical data</em>
71
+ </p>
72
+
73
+ <p align="center">
74
+ <!-- Add real badges once you publish to PyPI / set up CI -->
75
+ <img alt="PyPI" src="https://img.shields.io/pypi/v/bezierv?style=flat-square">
76
+ <img alt="CI" src="https://img.shields.io/github/actions/workflow/status/EstebanLeiva/bezierv/ci.yml?style=flat-square">
77
+ <img alt="License" src="https://img.shields.io/badge/License-MIT-informational?style=flat-square">
78
+ <a href="https://estebanleiva.github.io/bezierv/"><img alt="Docs" src="https://img.shields.io/badge/docs-online-brightgreen?style=flat-square"></a>
79
+ </p>
80
+
81
+ ---
82
+
83
+ ## Why Bézier random variables?
84
+ Classical parametric distributions can be too rigid.
85
+
86
+ Bézier curves offer a sweet spot: **smooth** and **shape-controlled**.
87
+ With **bezierv** you can:
88
+
89
+ * Fit Bézier CDFs/PDFs to sample data of any shape.
90
+ * Evaluate moments and quantiles.
91
+ * Compose variables via convolution.
92
+
93
+ ---
94
+
95
+ ## Installation
96
+
97
+ ```bash
98
+ pip install bezierv
99
+ ```
@@ -22,8 +22,8 @@ bezierv/tests/test_classes/conftest.py,sha256=X94OWG8puTTjueuxjBBQR-fU4f8nN-4QT5
22
22
  bezierv/tests/test_classes/test_bezierv.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
23
  bezierv/tests/test_classes/test_convolver.py,sha256=3Z6G0em_owso1gNcGWadHkiHxx65ktFJV_u9Gvop_W8,1118
24
24
  bezierv/tests/test_classes/test_distfit.py,sha256=B-xgIocMzWAfuTxhMTvD2S1QvE-MHXSw8JkoVcziQHA,1103
25
- bezierv-0.1.1.dist-info/licenses/LICENSE,sha256=VfWiefIi6eo_kZleNp0Plg8A2eUX4D8fDbKtfj4VCp4,1115
26
- bezierv-0.1.1.dist-info/METADATA,sha256=v7tr88XZbgfJXHECr20IwYa_cKysb0T2KgWh8AIPfbs,1816
27
- bezierv-0.1.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
28
- bezierv-0.1.1.dist-info/top_level.txt,sha256=AC8zK0YmUeXyPIHtt0EKuHkLrvFBFeHwzp6bjzYnqJI,8
29
- bezierv-0.1.1.dist-info/RECORD,,
25
+ bezierv-1.0.0.dist-info/licenses/LICENSE,sha256=VfWiefIi6eo_kZleNp0Plg8A2eUX4D8fDbKtfj4VCp4,1115
26
+ bezierv-1.0.0.dist-info/METADATA,sha256=hzqB1McgWf-yUlKqHtBTsY3gpUjv6PN-JQ7_KNQCQG0,4679
27
+ bezierv-1.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
28
+ bezierv-1.0.0.dist-info/top_level.txt,sha256=AC8zK0YmUeXyPIHtt0EKuHkLrvFBFeHwzp6bjzYnqJI,8
29
+ bezierv-1.0.0.dist-info/RECORD,,
@@ -1,33 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: bezierv
3
- Version: 0.1.1
4
- Summary: This package serves as a computational framework for Bézier distributions.
5
- Author-email: Esteban Leiva <e.leivam@uniandes.edu.co>, "Andrés L. Medaglia" <amedagli@uniandes.edu.co>
6
- Classifier: Programming Language :: Python :: 3 :: Only
7
- Classifier: Programming Language :: Python :: 3.10
8
- Classifier: Programming Language :: Python :: 3.11
9
- Classifier: Programming Language :: Python :: 3.12
10
- Classifier: Programming Language :: Python :: 3.13
11
- Requires-Python: <3.14,>=3.10
12
- License-File: LICENSE
13
- Requires-Dist: numpy<2,>=1.26; python_version == "3.10"
14
- Requires-Dist: scipy<1.16,>=1.13; python_version == "3.10"
15
- Requires-Dist: matplotlib<3.11,>=3.9; python_version == "3.10"
16
- Requires-Dist: statsmodels<0.15,>=0.14.2; python_version == "3.10"
17
- Requires-Dist: pyomo<7,>=6.8; python_version == "3.10"
18
- Requires-Dist: numpy<2.3,>=1.26; python_version == "3.11"
19
- Requires-Dist: scipy<1.17,>=1.13; python_version == "3.11"
20
- Requires-Dist: matplotlib<3.11,>=3.9; python_version == "3.11"
21
- Requires-Dist: statsmodels<0.15,>=0.14.2; python_version == "3.11"
22
- Requires-Dist: pyomo<7,>=6.8; python_version == "3.11"
23
- Requires-Dist: numpy<2.3,>=2.1; python_version == "3.12"
24
- Requires-Dist: scipy<1.17,>=1.14.1; python_version == "3.12"
25
- Requires-Dist: matplotlib<3.11,>=3.9; python_version == "3.12"
26
- Requires-Dist: statsmodels<0.15,>=0.14.2; python_version == "3.12"
27
- Requires-Dist: pyomo<7,>=6.8; python_version == "3.12"
28
- Requires-Dist: numpy<2.4,>=2.2; python_version == "3.13"
29
- Requires-Dist: scipy<1.17,>=1.14.1; python_version == "3.13"
30
- Requires-Dist: matplotlib<3.11,>=3.9; python_version == "3.13"
31
- Requires-Dist: statsmodels<0.15,>=0.14.2; python_version == "3.13"
32
- Requires-Dist: pyomo<7,>=6.8; python_version == "3.13"
33
- Dynamic: license-file