pyoframe 0.0.10__tar.gz → 0.0.11__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.
- {pyoframe-0.0.10/src/pyoframe.egg-info → pyoframe-0.0.11}/PKG-INFO +2 -1
- {pyoframe-0.0.10 → pyoframe-0.0.11}/pyproject.toml +2 -2
- {pyoframe-0.0.10 → pyoframe-0.0.11/src/pyoframe.egg-info}/PKG-INFO +2 -1
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe.egg-info/requires.txt +1 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/LICENSE +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/README.md +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/setup.cfg +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/__init__.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/_arithmetic.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/constants.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/core.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/io.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/io_mappers.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/model.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/model_element.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/monkey_patch.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/objective.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/solvers.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/user_defined.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe/util.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe.egg-info/SOURCES.txt +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe.egg-info/dependency_links.txt +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/src/pyoframe.egg-info/top_level.txt +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/tests/test_arithmetic.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/tests/test_examples.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/tests/test_io.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/tests/test_operations.py +0 -0
- {pyoframe-0.0.10 → pyoframe-0.0.11}/tests/test_solver.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyoframe
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.11
|
|
4
4
|
Summary: Blazing fast linear program interface
|
|
5
5
|
Author-email: Bravos Power <dev@bravospower.com>
|
|
6
6
|
Project-URL: Homepage, https://bravos-power.github.io/pyoframe/
|
|
@@ -19,6 +19,7 @@ Requires-Dist: polars<2,>=0.20
|
|
|
19
19
|
Requires-Dist: numpy
|
|
20
20
|
Requires-Dist: pyarrow
|
|
21
21
|
Requires-Dist: pandas
|
|
22
|
+
Requires-Dist: packaging
|
|
22
23
|
Provides-Extra: dev
|
|
23
24
|
Requires-Dist: black; extra == "dev"
|
|
24
25
|
Requires-Dist: bumpver; extra == "dev"
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pyoframe"
|
|
7
|
-
version = "0.0.
|
|
7
|
+
version = "0.0.11"
|
|
8
8
|
authors = [{ name = "Bravos Power", email = "dev@bravospower.com" }]
|
|
9
9
|
description = "Blazing fast linear program interface"
|
|
10
10
|
readme = "README.md"
|
|
@@ -16,7 +16,7 @@ classifiers = [
|
|
|
16
16
|
"License :: OSI Approved :: MIT License",
|
|
17
17
|
"Natural Language :: English",
|
|
18
18
|
]
|
|
19
|
-
dependencies = ["polars>=0.20,<2", "numpy", "pyarrow", "pandas"]
|
|
19
|
+
dependencies = ["polars>=0.20,<2", "numpy", "pyarrow", "pandas", "packaging"]
|
|
20
20
|
|
|
21
21
|
[project.optional-dependencies]
|
|
22
22
|
dev = [
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pyoframe
|
|
3
|
-
Version: 0.0.
|
|
3
|
+
Version: 0.0.11
|
|
4
4
|
Summary: Blazing fast linear program interface
|
|
5
5
|
Author-email: Bravos Power <dev@bravospower.com>
|
|
6
6
|
Project-URL: Homepage, https://bravos-power.github.io/pyoframe/
|
|
@@ -19,6 +19,7 @@ Requires-Dist: polars<2,>=0.20
|
|
|
19
19
|
Requires-Dist: numpy
|
|
20
20
|
Requires-Dist: pyarrow
|
|
21
21
|
Requires-Dist: pandas
|
|
22
|
+
Requires-Dist: packaging
|
|
22
23
|
Provides-Extra: dev
|
|
23
24
|
Requires-Dist: black; extra == "dev"
|
|
24
25
|
Requires-Dist: bumpver; extra == "dev"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|