pyoframe 0.0.4__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.
- pyoframe/__init__.py +15 -0
- pyoframe/_arithmetic.py +228 -0
- pyoframe/constants.py +280 -0
- pyoframe/constraints.py +911 -0
- pyoframe/io.py +149 -0
- pyoframe/io_mappers.py +206 -0
- pyoframe/model.py +92 -0
- pyoframe/model_element.py +116 -0
- pyoframe/monkey_patch.py +54 -0
- pyoframe/objective.py +42 -0
- pyoframe/solvers.py +186 -0
- pyoframe/util.py +271 -0
- pyoframe/variables.py +193 -0
- pyoframe-0.0.4.dist-info/LICENSE +23 -0
- pyoframe-0.0.4.dist-info/METADATA +58 -0
- pyoframe-0.0.4.dist-info/RECORD +18 -0
- pyoframe-0.0.4.dist-info/WHEEL +5 -0
- pyoframe-0.0.4.dist-info/top_level.txt +1 -0
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pyoframe
|
|
3
|
+
Version: 0.0.4
|
|
4
|
+
Summary: Blazing fast linear program interface
|
|
5
|
+
Author-email: Bravos Power <dev@bravospower.com>
|
|
6
|
+
Project-URL: Homepage, https://bravos-power.github.io/pyoframe/
|
|
7
|
+
Project-URL: documentation, https://bravos-power.github.io/pyoframe/
|
|
8
|
+
Project-URL: repository, https://github.com/Bravos-Power/pyoframe/
|
|
9
|
+
Project-URL: Issues, https://github.com/Bravos-Power/pyoframe/issues
|
|
10
|
+
Classifier: Programming Language :: Python :: 3
|
|
11
|
+
Classifier: Operating System :: OS Independent
|
|
12
|
+
Classifier: Development Status :: 3 - Alpha
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Natural Language :: English
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
Requires-Dist: polars ==0.20.13
|
|
19
|
+
Requires-Dist: numpy
|
|
20
|
+
Requires-Dist: pyarrow
|
|
21
|
+
Requires-Dist: pandas
|
|
22
|
+
Provides-Extra: dev
|
|
23
|
+
Requires-Dist: black ; extra == 'dev'
|
|
24
|
+
Requires-Dist: bumpver ; extra == 'dev'
|
|
25
|
+
Requires-Dist: isort ; extra == 'dev'
|
|
26
|
+
Requires-Dist: pip-tools ; extra == 'dev'
|
|
27
|
+
Requires-Dist: pytest ; extra == 'dev'
|
|
28
|
+
Requires-Dist: pytest-cov ; extra == 'dev'
|
|
29
|
+
Requires-Dist: pre-commit ; extra == 'dev'
|
|
30
|
+
Requires-Dist: gurobipy ; extra == 'dev'
|
|
31
|
+
Provides-Extra: docs
|
|
32
|
+
Requires-Dist: mkdocs-material ==9.* ; extra == 'docs'
|
|
33
|
+
Requires-Dist: mkdocstrings[python] ; extra == 'docs'
|
|
34
|
+
Requires-Dist: mkdocs-git-revision-date-localized-plugin ; extra == 'docs'
|
|
35
|
+
Requires-Dist: mkdocs-git-committers-plugin-2 ; extra == 'docs'
|
|
36
|
+
Requires-Dist: mkdocs-gen-files ; extra == 'docs'
|
|
37
|
+
Requires-Dist: mkdocs-section-index ; extra == 'docs'
|
|
38
|
+
Requires-Dist: mkdocs-literate-nav ; extra == 'docs'
|
|
39
|
+
|
|
40
|
+
# Pyoframe: Fast and low-memory linear programming models
|
|
41
|
+
|
|
42
|
+
[](https://codecov.io/gh/Bravos-Power/pyoframe)
|
|
43
|
+
[](https://github.com/Bravos-Power/pyoframe/actions/workflows/ci.yml)
|
|
44
|
+
[](https://Bravos-Power.github.io/pyoframe/reference/)
|
|
45
|
+
[](https://opensource.org/licenses/MIT)
|
|
46
|
+
[](https://github.com/Bravos-Power/pyoframe/issues?q=is%3Aopen+is%3Aissue+no%3Alabel)
|
|
47
|
+
[](https://github.com/Bravos-Power/pyoframe/issues?q=is%3Aopen+is%3Aissue+label%3Abug)
|
|
48
|
+
|
|
49
|
+
|
|
50
|
+
A library to rapidly and memory-efficiently formulate large and sparse optimization models using Pandas or Polars dataframes.
|
|
51
|
+
|
|
52
|
+
## Contribute
|
|
53
|
+
|
|
54
|
+
Contributions are welcome! See [`CONTRIBUTE.md`](./CONTRIBUTE.md).
|
|
55
|
+
|
|
56
|
+
## Acknowledgments
|
|
57
|
+
|
|
58
|
+
Martin Staadecker first created this library while working for [Bravos Power](https://www.bravospower.com/) The library takes inspiration from Linopy and Pyomo, two prior libraries for optimization for which we are thankful.
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
pyoframe/__init__.py,sha256=GCcDnYaiuPJgFbVznihTvYku7Hs39ayAqo5P0UvSKmM,479
|
|
2
|
+
pyoframe/_arithmetic.py,sha256=9qJRuelwU2ycVjDiUSBf3F-jmS0D4Gq_MKb79tiaU_0,9061
|
|
3
|
+
pyoframe/constants.py,sha256=dPvt90WP2oYTRf32y7hj_W6McnjyJR8fs7NUZtE6dXs,7076
|
|
4
|
+
pyoframe/constraints.py,sha256=jfX4N1XMzOlVYoPRFLP4T0vYxTqM9owsWDlgCK6vVMQ,32229
|
|
5
|
+
pyoframe/io.py,sha256=syecN1aT_d02Hu4D42IAgA13LCrQhWkrSwfONN6y9E8,4067
|
|
6
|
+
pyoframe/io_mappers.py,sha256=Il0lRGv-EvVDa3_M7vCwp0hajQfAbOVZEBDqNIwzNpg,6208
|
|
7
|
+
pyoframe/model.py,sha256=ZkVDWVorAFTXb6Be_04G707jaFqml4eVhkM3Sj1GnNU,3236
|
|
8
|
+
pyoframe/model_element.py,sha256=lj5kd5XmhPDepP4lGhsHG1m1qN_8TS-Dl1cTcfveVHo,3753
|
|
9
|
+
pyoframe/monkey_patch.py,sha256=lSsJir2fXkEl_uScYbfVle99r_WvlWvD298alP2uWlE,2082
|
|
10
|
+
pyoframe/objective.py,sha256=9vDZeDu7fT2A7-DY5WatSJrARQVRHcEWkF7GixpVMa4,1247
|
|
11
|
+
pyoframe/solvers.py,sha256=onudQUoGilQ4oOrMA7vz64a08So82dF28hjxHPQooTM,5532
|
|
12
|
+
pyoframe/util.py,sha256=iMRvnAFEFzpd23ZjgLy30ZiZGsWXpVzsCNtT_BXZYi4,9962
|
|
13
|
+
pyoframe/variables.py,sha256=tPgK3S_Csu-JqY7L5ybs0GdRB7Ha1mG0mAsHdlW0hQI,8878
|
|
14
|
+
pyoframe-0.0.4.dist-info/LICENSE,sha256=L1pXz6p_1OW5XGWb2UCR6PNu6k3JAT0XWhi8jV0cuRg,1137
|
|
15
|
+
pyoframe-0.0.4.dist-info/METADATA,sha256=Fmo2mZ0lji7wMP3lPZ4JsxuH_bCK2bCHUaMGiRMCaeE,3106
|
|
16
|
+
pyoframe-0.0.4.dist-info/WHEEL,sha256=GJ7t_kWBFywbagK5eo9IoUwLW6oyOeTKmQ-9iHFVNxQ,92
|
|
17
|
+
pyoframe-0.0.4.dist-info/top_level.txt,sha256=10z3OOJSVLriQ0IrFLMH8CH9zByugPWolqhlHlkNjV4,9
|
|
18
|
+
pyoframe-0.0.4.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pyoframe
|