bezierv 0.1.1__tar.gz → 0.1.2__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.
Files changed (40) hide show
  1. bezierv-0.1.2/.github/workflows/ci.yml +52 -0
  2. bezierv-0.1.2/.github/workflows/documentation.yml +34 -0
  3. bezierv-0.1.2/PKG-INFO +99 -0
  4. {bezierv-0.1.1 → bezierv-0.1.2}/README.md +7 -8
  5. bezierv-0.1.2/bezierv.egg-info/PKG-INFO +99 -0
  6. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv.egg-info/SOURCES.txt +2 -0
  7. {bezierv-0.1.1 → bezierv-0.1.2}/pyproject.toml +14 -2
  8. bezierv-0.1.1/PKG-INFO +0 -33
  9. bezierv-0.1.1/bezierv.egg-info/PKG-INFO +0 -33
  10. {bezierv-0.1.1 → bezierv-0.1.2}/.gitignore +0 -0
  11. {bezierv-0.1.1 → bezierv-0.1.2}/LICENSE +0 -0
  12. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/__init__.py +0 -0
  13. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/algorithms/__init__.py +0 -0
  14. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/algorithms/nelder_mead.py +0 -0
  15. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/algorithms/non_linear.py +0 -0
  16. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/algorithms/proj_grad.py +0 -0
  17. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/algorithms/proj_subgrad.py +0 -0
  18. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/algorithms/utils.py +0 -0
  19. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/classes/__init__.py +0 -0
  20. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/classes/bezierv.py +0 -0
  21. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/classes/convolver.py +0 -0
  22. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv/classes/distfit.py +0 -0
  23. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv.egg-info/dependency_links.txt +0 -0
  24. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv.egg-info/requires.txt +0 -0
  25. {bezierv-0.1.1 → bezierv-0.1.2}/bezierv.egg-info/top_level.txt +0 -0
  26. {bezierv-0.1.1 → bezierv-0.1.2}/docs/assets/logo.png +0 -0
  27. {bezierv-0.1.1 → bezierv-0.1.2}/docs/index.md +0 -0
  28. {bezierv-0.1.1 → bezierv-0.1.2}/docs/reference.md +0 -0
  29. {bezierv-0.1.1 → bezierv-0.1.2}/mkdocs.yml +0 -0
  30. {bezierv-0.1.1 → bezierv-0.1.2}/noxfile.py +0 -0
  31. {bezierv-0.1.1 → bezierv-0.1.2}/setup.cfg +0 -0
  32. {bezierv-0.1.1 → bezierv-0.1.2}/tests/__init__.py +0 -0
  33. {bezierv-0.1.1 → bezierv-0.1.2}/tests/test_algorithms/test_nelder_mead.py +0 -0
  34. {bezierv-0.1.1 → bezierv-0.1.2}/tests/test_algorithms/test_proj_grad.py +0 -0
  35. {bezierv-0.1.1 → bezierv-0.1.2}/tests/test_algorithms/test_proj_subgrad.py +0 -0
  36. {bezierv-0.1.1 → bezierv-0.1.2}/tests/test_algorithms/test_utils.py +0 -0
  37. {bezierv-0.1.1 → bezierv-0.1.2}/tests/test_classes/conftest.py +0 -0
  38. {bezierv-0.1.1 → bezierv-0.1.2}/tests/test_classes/test_bezierv.py +0 -0
  39. {bezierv-0.1.1 → bezierv-0.1.2}/tests/test_classes/test_convolver.py +0 -0
  40. {bezierv-0.1.1 → bezierv-0.1.2}/tests/test_classes/test_distfit.py +0 -0
@@ -0,0 +1,52 @@
1
+ name: CI (build & test)
2
+
3
+ on:
4
+ push:
5
+ branches: [main]
6
+ workflow_dispatch:
7
+
8
+ permissions:
9
+ contents: read
10
+
11
+ concurrency:
12
+ group: ci-${{ github.ref }}
13
+ cancel-in-progress: true
14
+
15
+ jobs:
16
+ tests:
17
+ runs-on: ubuntu-latest
18
+ strategy:
19
+ fail-fast: false
20
+ matrix:
21
+ python-version: ["3.10", "3.11", "3.12", "3.13"]
22
+
23
+ steps:
24
+ - name: Checkout
25
+ uses: actions/checkout@v4
26
+
27
+ - name: Set up Python ${{ matrix.python-version }}
28
+ uses: actions/setup-python@v5
29
+ with:
30
+ python-version: ${{ matrix.python-version }}
31
+ cache: pip
32
+ # setup-python will hash these for cache keys; pyproject is enough
33
+ cache-dependency-path: pyproject.toml
34
+
35
+ - name: Upgrade pip tooling
36
+ run: python -m pip install --upgrade pip
37
+
38
+ - name: Install package and test deps
39
+ run: |
40
+ python -m pip install -U build twine
41
+ # If you have a [project.optional-dependencies.test] extra, prefer: pip install -e ".[test]"
42
+ python -m pip install -e .
43
+ python -m pip install pytest
44
+
45
+ - name: Run tests
46
+ run: pytest -q
47
+
48
+ - name: Build sdist and wheel
49
+ run: python -m build
50
+
51
+ - name: Validate metadata (twine check)
52
+ run: twine check dist/*
@@ -0,0 +1,34 @@
1
+ name: Deploy MkDocs to Pages
2
+ on:
3
+ push: { branches: [main] }
4
+
5
+ permissions:
6
+ contents: read
7
+ pages: write
8
+ id-token: write
9
+
10
+ concurrency:
11
+ group: "pages"
12
+ cancel-in-progress: true
13
+
14
+ jobs:
15
+ build:
16
+ runs-on: ubuntu-latest
17
+ steps:
18
+ - uses: actions/checkout@v4
19
+ - uses: actions/setup-python@v5
20
+ with: { python-version: '3.x' }
21
+ - run: pip install mkdocs-material "mkdocstrings[python]"
22
+ - run: mkdocs build
23
+ - uses: actions/upload-pages-artifact@v3
24
+ with: { path: site }
25
+
26
+ deploy:
27
+ needs: build
28
+ runs-on: ubuntu-latest
29
+ environment:
30
+ name: github-pages
31
+ url: ${{ steps.deployment.outputs.page_url }}
32
+ steps:
33
+ - id: deployment
34
+ uses: actions/deploy-pages@v4
bezierv-0.1.2/PKG-INFO ADDED
@@ -0,0 +1,99 @@
1
+ Metadata-Version: 2.4
2
+ Name: bezierv
3
+ Version: 0.1.2
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
+ ```
@@ -5,20 +5,22 @@
5
5
 
6
6
  <h1 align="center">bezierv</h1>
7
7
  <p align="center">
8
- <em>Fit smooth Bézier random variables to empirical data &mdash; elegant, differentiable, and fast.</em>
8
+ <em>Fit smooth Bézier random variables to empirical data</em>
9
9
  </p>
10
10
 
11
11
  <p align="center">
12
12
  <!-- Add real badges once you publish to PyPI / set up CI -->
13
13
  <img alt="PyPI" src="https://img.shields.io/pypi/v/bezierv?style=flat-square">
14
14
  <img alt="CI" src="https://img.shields.io/github/actions/workflow/status/EstebanLeiva/bezierv/ci.yml?style=flat-square">
15
- <img alt="License" src="https://img.shields.io/github/license/EstebanLeiva/bezierv?style=flat-square">
15
+ <img alt="License" src="https://img.shields.io/badge/License-MIT-informational?style=flat-square">
16
+ <a href="https://estebanleiva.github.io/bezierv/"><img alt="Docs" src="https://img.shields.io/badge/docs-online-brightgreen?style=flat-square"></a>
16
17
  </p>
17
18
 
18
19
  ---
19
20
 
20
21
  ## Why Bézier random variables?
21
- Classical parametric distributions can be too rigid; non-parametric methods can be noisy.
22
+ Classical parametric distributions can be too rigid.
23
+
22
24
  Bézier curves offer a sweet spot: **smooth** and **shape-controlled**.
23
25
  With **bezierv** you can:
24
26
 
@@ -31,8 +33,5 @@ With **bezierv** you can:
31
33
  ## Installation
32
34
 
33
35
  ```bash
34
- pip install bezierv # from PyPI (coming soon)
35
- # or, for development:
36
- git clone https://github.com/your-org/bezierv
37
- cd bezierv
38
- pip install -e .
36
+ pip install bezierv
37
+ ```
@@ -0,0 +1,99 @@
1
+ Metadata-Version: 2.4
2
+ Name: bezierv
3
+ Version: 0.1.2
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
+ ```
@@ -4,6 +4,8 @@ README.md
4
4
  mkdocs.yml
5
5
  noxfile.py
6
6
  pyproject.toml
7
+ .github/workflows/ci.yml
8
+ .github/workflows/documentation.yml
7
9
  bezierv/__init__.py
8
10
  bezierv.egg-info/PKG-INFO
9
11
  bezierv.egg-info/SOURCES.txt
@@ -4,12 +4,19 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "bezierv"
7
- version = "0.1.1"
7
+ version = "0.1.2"
8
8
  description = "This package serves as a computational framework for Bézier distributions."
9
+ readme = { file = "README.md", content-type = "text/markdown" }
10
+ license = { file = "LICENSE" }
9
11
  authors = [
10
12
  { name = "Esteban Leiva", email = "e.leivam@uniandes.edu.co" },
11
13
  { name = "Andrés L. Medaglia", email = "amedagli@uniandes.edu.co" },
12
14
  ]
15
+ maintainers = [
16
+ { name = "Esteban Leiva", email = "e.leivam@uniandes.edu.co" },
17
+ ]
18
+ keywords = ["bezier", "distribution", "optimization"]
19
+
13
20
  requires-python = ">=3.10,<3.14"
14
21
  classifiers = [
15
22
  "Programming Language :: Python :: 3 :: Only",
@@ -47,4 +54,9 @@ dependencies = [
47
54
  "matplotlib>=3.9,<3.11; python_version == '3.13'",
48
55
  "statsmodels>=0.14.2,<0.15; python_version == '3.13'",
49
56
  "pyomo>=6.8,<7; python_version == '3.13'",
50
- ]
57
+ ]
58
+
59
+ [project.urls]
60
+ Homepage = "https://github.com/you/your-package"
61
+ Documentation = "https://your-package.readthedocs.io/"
62
+ Source = "https://github.com/you/your-package"
bezierv-0.1.1/PKG-INFO DELETED
@@ -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
@@ -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
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes