Signed-off-by: gwg313 <gwg313@pm.me>
This commit is contained in:
gwg313 2026-04-13 17:57:28 -04:00
commit e776c88219
Signed by: gwg313
GPG key ID: 60FF63B4826B7400
118 changed files with 16463 additions and 0 deletions

27
pyproject.toml Normal file
View file

@ -0,0 +1,27 @@
[project]
name = "pyomo_learn"
version = "0.1.0"
description = ""
authors = [
{name = "gwg313",email = "gwg313@pm.me"}
]
readme = "README.md"
requires-python = ">=3.12"
dependencies = [
"gurobipy (>=12.0.2,<13.0.0)",
"pyomo (>=6.9.2,<7.0.0)",
"pyyaml (>=6.0.2,<7.0.0)",
"sympy (>=1.14.0,<2.0.0)",
"fastapi (>=0.115.12,<0.116.0)",
"pydantic (>=2.11.5,<3.0.0)",
"uvicorn (>=0.34.2,<0.35.0)",
"celery (>=5.5.3,<6.0.0)",
"redis (>=6.2.0,<7.0.0)",
"pytest (>=8.4.0,<9.0.0)",
"highspy (>=1.13.1,<2.0.0)"
]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"