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.
@@ -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
+ [![codecov](https://codecov.io/gh/Bravos-Power/pyoframe/graph/badge.svg?token=8258XESRYQ)](https://codecov.io/gh/Bravos-Power/pyoframe)
43
+ [![Build](https://github.com/Bravos-Power/pyoframe/actions/workflows/ci.yml/badge.svg)](https://github.com/Bravos-Power/pyoframe/actions/workflows/ci.yml)
44
+ [![Docs](https://github.com/Bravos-Power/pyoframe/actions/workflows/publish_doc.yml/badge.svg)](https://Bravos-Power.github.io/pyoframe/reference/)
45
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
46
+ [![Issues Needing Triage](https://img.shields.io/github/issues-search/Bravos-Power/pyoframe?query=no%3Alabel%20is%3Aopen&label=Needs%20Triage)](https://github.com/Bravos-Power/pyoframe/issues?q=is%3Aopen+is%3Aissue+no%3Alabel)
47
+ [![Open Bugs](https://img.shields.io/github/issues-search/Bravos-Power/pyoframe?query=label%3Abug%20is%3Aopen&label=Open%20Bugs)](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,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.43.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ pyoframe